LargeList MethodsAerospike
The LargeList type exposes the following members.
Methods

  NameDescription
Public methodAdd(IList)
Add values to list. Fail if a value's key exists and list is configured for unique keys. If value is a map, the key is identified by "key" entry. Otherwise, the value is the key. If large list does not exist, create it using specified userModule configuration.
Public methodAdd(Value)
Add value to list. Fail if value's key exists and list is configured for unique keys. If value is a map, the key is identified by "key" entry. Otherwise, the value is the key. If large list does not exist, create it using specified userModule configuration.
Public methodAdd( Value )
Add values to list. Fail if a value's key exists and list is configured for unique keys. If value is a map, the key is identified by "key" entry. Otherwise, the value is the key. If large list does not exist, create it using specified userModule configuration.
Public methodDestroy
Delete bin containing the list.
Public methodFilter
Select values from list and apply specified Lua filter.
Public methodFind
Select values from list.
Public methodFindThenFilter
Select values from list and apply specified Lua filter.
Public methodGetCapacity
Return maximum number of entries in the list.
Public methodGetConfig
Return map of list configuration parameters.
Public methodRange
Select range of values from list.
Public methodRemove
Delete value from list.
Public methodScan
Return all objects in the list.
Public methodSetCapacity
Set maximum number of entries in the list.
Public methodSize
Return size of list.
Public methodUpdate(IList)
Update/Add each value in values list depending if key exists or not. If value is a map, the key is identified by "key" entry. Otherwise, the value is the key. If large list does not exist, create it using specified userModule configuration.
Public methodUpdate(Value)
Update value in list if key exists. Add value to list if key does not exist. If value is a map, the key is identified by "key" entry. Otherwise, the value is the key. If large list does not exist, create it using specified userModule configuration.
Public methodUpdate( Value )
Update/Add each value in array depending if key exists or not. If value is a map, the key is identified by "key" entry. Otherwise, the value is the key. If large list does not exist, create it using specified userModule configuration.
Back to Top
See Also