All notable changes to this project will be documented in this file.
- Usage
- New Filter Expressions
const query = client.query(helper.namespace, helper.set) const queryPolicy = { filterExpression: exp.eq(exp.binInt('a'), exp.int(9))} const stream = query.foreach(queryPolicy)
- Deprecated PredicateExpression Filter
const query = client.query(helper.namespace, helper.set) const pexp = Aerospike.predexp query.where([pexp.IntVar('a'), pexp.IntValue(9),pexp.stringEqual()]) const stream = query.foreach()
- New Filter Expressions
- Usage
-
New "timeout" InfoPolicy
const subject = new Aerospike.InfoPolicy({ timeout: 1000, sendAsIs: true, checkBounds: false })
-
Deprecated "totalTimeout" InfoPolicy
const subject = new Aerospike.InfoPolicy({ totalTimeout: 1000, sendAsIs: true, checkBounds: false })
-