The nodes of the cluster
The additional module options
The options of the clusters
Initializing the module object
The options of the redis database
The additional module options
Adding an item to the cuckoo filter, creating the filter if it does not exist.
The name of the filter
The item to add
Adding an item to a cuckoo filter if the item did not exist previously.
The name of the filter
The item to add
Connecting to the Redis database with the module
Returning the number of times an item may be in the filter.
The name of the filter
The item to count
Deleting an item once from the filter. If the item exists only once, it will be removed from the filter.
The name of the filter
The item to delete from the filter
Disconnecting from the Redis database with the module
Determining whether an item may exist in the Cuckoo Filter or not.
The name of the filter
The item to check for
Handling a error
The message of the error
Simpilizing the response of the Module command
The array response from the module
Returning information about a key
The name of the filter
Adding one or more items to a cuckoo filter, allowing the filter to be created with a custom capacity if it does not yet exist.
The name of the filter
Begin the list of items to add
The additional optional parameters of the 'CF.INSERT' command
Adding one or more items to a cuckoo filter, allowing the filter to be created with a custom capacity if it does not yet exist.
The name of the filter
The items of the 'CF.INSERT' command
The additional optional parameters of the 'CF.INSERTNX' command
Check if array is fully two dimensional. Only items in the array are arrays.
The potential two dimensional array
Restoring a filter previously saved using SCANDUMP.
The name of the key to restore
The iterator value associated with data (returned by SCANDUMP )
The current data chunk (returned by SCANDUMP )
Formatting given param value to string
The given param value
A param value converted to string
Reducing an array by one level. i.e. from two dimensional to 1 dimensional.
The potentional two dimensional array
Creating an empty Bloom Cuckoo filter with a given initial capacity.
The key under which the filter is to be found
The number of entries you intend to add to the filter. Performance will begin to degrade after adding more items than this number. The actual degradation will depend on how far the limit has been exceeded. Performance will degrade linearly as the number of entries grow exponentially.
The additional optional parameters
Begining an incremental save of the Cuckoo filter
The name of the filter
Iterator value. This is either 0, or the iterator from a previous invocation of this command
Running a Redis command
The command data of a command to send. Consists of command and args.
Generated using TypeDoc
Initializing the module object