How to use the maps function from bindings
Find comprehensive JavaScript bindings.maps code examples handpicked from public code repositorys.
232 233 234 235 236 237 238 239
* @property {number} CREATE_ONLY - If the key already exists, the write will * fail. If the key does not exist, a new item will be created. * * @deprecated since v3.5.0 */ exports.writeMode = as.maps.writeMode /**
76
0
2
+ 3 other calls in file
16 17 18 19 20 21 22 23 24
'use strict' const as = require('bindings')('aerospike.node') const exp = as.exp const lists = as.lists const maps = as.maps const bits = as.bitwise const hlls = as.hll const cdtCtx = require('./cdt_context')
76
0
0
324 325 326 327 328 329 330 331 332 333 334
* @property {number} VALUE - Return value for single key read and value list * for range read. * @property {number} KEY_VALUE - Return map items keys and values as an Array, * i.e. [key1, value1, key2, value2, ...]. */ exports.returnType = as.maps.returnType /** * @summary Sets map policy attributes. *
75
197
37
+ 15 other calls in file
bindings.createKey is the most popular function in bindings (8616 examples)