Uses of Interface
io.vertx.redis.client.Command

Packages that use Command
Package
Description
 
  • Uses of Command in io.vertx.redis.client

    Fields in io.vertx.redis.client declared as Command
    Modifier and Type
    Field
    Description
    static final Command
    Command.ACL
    A container for Access List Control commands.
    static final Command
    Command.APPEND
    Appends a string to the value of a key.
    static final Command
    Command.ASKING
    Signals that a cluster client is following an -ASK redirect.
    static final Command
    Command.AUTH
    Authenticates the connection.
    static final Command
    Command.BF_ADD
    Adds an item to a Bloom Filter.
    static final Command
    Command.BF_CARD
    Returns the cardinality of a Bloom filter.
    static final Command
    Command.BF_DEBUG
    This command only exists in Redis.
    static final Command
    Command.BF_EXISTS
    Checks whether an item exists in a Bloom Filter.
    static final Command
    Command.BF_INFO
    Returns information about a Bloom Filter.
    static final Command
    Command.BF_INSERT
    Adds one or more items to a Bloom Filter.
    static final Command
    Command.BF_LOADCHUNK
    Restores a filter previously saved using SCANDUMP.
    static final Command
    Command.BF_MADD
    Adds one or more items to a Bloom Filter.
    static final Command
    Command.BF_MEXISTS
    Checks whether one or more items exist in a Bloom Filter.
    static final Command
    Command.BF_RESERVE
    Creates a new Bloom Filter.
    static final Command
    Command.BF_SCANDUMP
    Begins an incremental save of the bloom filter.
    static final Command
    Command.BGREWRITEAOF
    Asynchronously rewrites the append-only file to disk.
    static final Command
    Command.BGSAVE
    Asynchronously saves the database(s) to disk.
    static final Command
    Command.BITCOUNT
    Counts the number of set bits (population counting) in a string.
    static final Command
    Command.BITFIELD
    Performs arbitrary bitfield integer operations on strings.
    static final Command
    Command.BITFIELD_RO
    Performs arbitrary read-only bitfield integer operations on strings.
    static final Command
    Command.BITOP
    Performs bitwise operations on multiple strings, and stores the result.
    static final Command
    Command.BITPOS
    Finds the first set (1) or clear (0) bit in a string.
    static final Command
    Command.BLMOVE
    Pops an element from a list, pushes it to another list and returns it.
    static final Command
    Command.BLMPOP
    Pops the first element from one of multiple lists.
    static final Command
    Command.BLPOP
    Removes and returns the first element in a list.
    static final Command
    Command.BRPOP
    Removes and returns the last element in a list.
    static final Command
    Command.BRPOPLPUSH
    Deprecated.
    since Redis 6.2.0, replaced by: BLMOVE with the RIGHT and LEFT arguments
    static final Command
    Command.BZMPOP
    Removes and returns a member by score from one or more sorted sets.
    static final Command
    Command.BZPOPMAX
    Removes and returns the member with the highest score from one or more sorted sets.
    static final Command
    Command.BZPOPMIN
    Removes and returns the member with the lowest score from one or more sorted sets.
    static final Command
    Command.CF_ADD
    Adds an item to a Cuckoo Filter.
    static final Command
    Command.CF_ADDNX
    Adds an item to a Cuckoo Filter if the item did not exist previously.
    static final Command
    Command.CF_COMPACT
    This command only exists in Redis.
    static final Command
    Command.CF_COUNT
    Return the number of times an item might be in a Cuckoo Filter.
    static final Command
    Command.CF_DEBUG
    This command only exists in Redis.
    static final Command
    Command.CF_DEL
    Deletes an item from a Cuckoo Filter.
    static final Command
    Command.CF_EXISTS
    Checks whether one or more items exist in a Cuckoo Filter.
    static final Command
    Command.CF_INFO
    Returns information about a Cuckoo Filter.
    static final Command
    Command.CF_INSERT
    Adds one or more items to a Cuckoo Filter.
    static final Command
    Command.CF_INSERTNX
    Adds one or more items to a Cuckoo Filter if the items did not exist previously.
    static final Command
    Command.CF_LOADCHUNK
    Restores a filter previously saved using SCANDUMP.
    static final Command
    Command.CF_MEXISTS
    Checks whether one or more items exist in a Cuckoo Filter.
    static final Command
    Command.CF_RESERVE
    Creates a new Cuckoo Filter.
    static final Command
    Command.CF_SCANDUMP
    Begins an incremental save of the bloom filter.
    static final Command
    Command.CLIENT
    A container for client connection commands.
    static final Command
    Command.CLUSTER
    A container for Redis Cluster commands.
    static final Command
    Command.CMS_INCRBY
    Increases the count of one or more items by increment.
    static final Command
    Command.CMS_INFO
    Returns information about a sketch.
    static final Command
    Initializes a Count-Min Sketch to dimensions specified by user.
    static final Command
    Initializes a Count-Min Sketch to accommodate requested tolerances.
    static final Command
    Command.CMS_MERGE
    Merges several sketches into one sketch.
    static final Command
    Command.CMS_QUERY
    Returns the count for one or more items in a sketch.
    static final Command
    Command.COMMAND
    Returns detailed information about all commands.
    static final Command
    Command.COMMANDLOG
    A container for command log commands.
    static final Command
    Command.CONFIG
    A container for server configuration commands.
    static final Command
    Command.COPY
    Copies the value of a key to a new key.
    static final Command
    Command.DBSIZE
    Returns the number of keys in the database.
    static final Command
    Command.DEBUG
    A container for debugging commands.
    static final Command
    Command.DECR
    Decrements the integer value of a key by one.
    static final Command
    Command.DECRBY
    Decrements a number from the integer value of a key.
    static final Command
    Command.DEL
    Deletes one or more keys.
    static final Command
    Command.DELEX
    Conditionally removes the specified key based on value or digest comparison.
    static final Command
    Command.DELIFEQ
    Delete key if value matches string.
    static final Command
    Command.DIGEST
    Returns the XXH3 hash of a string value.
    static final Command
    Command.DISCARD
    Discards a transaction.
    static final Command
    Command.DUMP
    Returns a serialized representation of the value stored at a key.
    static final Command
    Command.ECHO
    Returns the given string.
    static final Command
    Command.EVAL
    Executes a server-side Lua script.
    static final Command
    Command.EVAL_RO
    Executes a read-only server-side Lua script.
    static final Command
    Command.EVALSHA
    Executes a server-side Lua script by SHA1 digest.
    static final Command
    Command.EVALSHA_RO
    Executes a read-only server-side Lua script by SHA1 digest.
    static final Command
    Command.EXEC
    Executes all commands in a transaction.
    static final Command
    Command.EXISTS
    Determines whether one or more keys exist.
    static final Command
    Command.EXPIRE
    Sets the expiration time of a key in seconds.
    static final Command
    Command.EXPIREAT
    Sets the expiration time of a key to a Unix timestamp.
    static final Command
    Command.EXPIRETIME
    Returns the expiration time of a key as a Unix timestamp.
    static final Command
    Command.FAILOVER
    Starts a coordinated failover from a server to one of its replicas.
    static final Command
    Command.FCALL
    Invokes a function.
    static final Command
    Command.FCALL_RO
    Invokes a read-only function.
    static final Command
    Command.FLUSHALL
    Removes all keys from all databases.
    static final Command
    Command.FLUSHDB
    Remove all keys from the current database.
    static final Command
    Adds an alias to the index.
    static final Command
    Deletes an alias from the index.
    static final Command
    Adds a new field to the index.
    static final Command
    Creates an index with the given spec.
    static final Command
    Command.FT__DROPIFX
    This command only exists in Redis.
    static final Command
    Deletes the index.
    static final Command
    Command.FT__LIST
    Returns a list of all existing indexes.
    static final Command
    Command.FT_ADD
    This command only exists in Redis.
    static final Command
    Command.FT_AGGREGATE
    Run a search query on an index and perform aggregate transformations on the results.
    static final Command
    Command.FT_ALIASADD
    Adds an alias to the index.
    static final Command
    Command.FT_ALIASDEL
    Deletes an alias from the index.
    static final Command
    Adds or updates an alias to the index.
    static final Command
    Command.FT_ALTER
    Adds a new field to the index.
    static final Command
    Command.FT_CONFIG
    This command only exists in Redis.
    static final Command
    Command.FT_CREATE
    Creates an index with the given spec.
    static final Command
    Command.FT_CURSOR
    This command only exists in Redis.
    static final Command
    Command.FT_DEBUG
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Command.FT_DEL
    This command only exists in Redis.
    static final Command
    Command.FT_DICTADD
    Adds terms to a dictionary.
    static final Command
    Command.FT_DICTDEL
    Deletes terms from a dictionary.
    static final Command
    Command.FT_DICTDUMP
    Dumps all terms in the given dictionary.
    static final Command
    Command.FT_DROP
    This command only exists in Redis.
    static final Command
    Command.FT_DROPINDEX
    Deletes the index.
    static final Command
    Command.FT_EXPLAIN
    Returns the execution plan for a complex query.
    static final Command
    Returns the execution plan for a complex query.
    static final Command
    Command.FT_GET
    This command only exists in Redis.
    static final Command
    Command.FT_HYBRID
    Performs hybrid search combining text search and vector similarity search.
    static final Command
    Command.FT_INFO
    Returns information and statistics on the index.
    static final Command
    Command.FT_MGET
    This command only exists in Redis.
    static final Command
    Command.FT_PROFILE
    Performs a `FT.SEARCH` or `FT.AGGREGATE` command and collects performance information.
    static final Command
    Command.FT_SAFEADD
    This command only exists in Redis.
    static final Command
    Command.FT_SEARCH
    Searches the index with a textual query, returning either documents or just ids.
    static final Command
    Performs spelling correction on a query, returning suggestions for misspelled terms.
    static final Command
    Command.FT_SUGADD
    Adds a suggestion string to an auto-complete suggestion dictionary.
    static final Command
    Command.FT_SUGDEL
    Deletes a string from a suggestion index.
    static final Command
    Command.FT_SUGGET
    Gets completion suggestions for a prefix.
    static final Command
    Command.FT_SUGLEN
    Gets the size of an auto-complete suggestion dictionary.
    static final Command
    Command.FT_SYNADD
    This command only exists in Redis.
    static final Command
    Command.FT_SYNDUMP
    Dumps the contents of a synonym group.
    static final Command
    Command.FT_SYNUPDATE
    Creates or updates a synonym group with additional terms.
    static final Command
    Command.FT_TAGVALS
    Returns the distinct tags indexed in a Tag field.
    static final Command
    Command.FUNCTION
    A container for function commands.
    static final Command
    Command.GEOADD
    Adds one or more members to a geospatial index.
    static final Command
    Command.GEODIST
    Returns the distance between two members of a geospatial index.
    static final Command
    Command.GEOHASH
    Returns members from a geospatial index as geohash strings.
    static final Command
    Command.GEOPOS
    Returns the longitude and latitude of members from a geospatial index.
    static final Command
    Command.GEORADIUS
    Deprecated.
    since Redis 6.2.0, replaced by: GEOSEARCH and GEOSEARCHSTORE with the BYRADIUS argument
    static final Command
    Command.GEORADIUS_RO
    Deprecated.
    since Redis 6.2.0, replaced by: GEOSEARCH with the BYRADIUS argument
    static final Command
    Deprecated.
    since Redis 6.2.0, replaced by: GEOSEARCH and GEOSEARCHSTORE with the BYRADIUS and FROMMEMBER arguments
    static final Command
    Deprecated.
    since Redis 6.2.0, replaced by: GEOSEARCH with the BYRADIUS and FROMMEMBER arguments
    static final Command
    Command.GEOSEARCH
    Queries a geospatial index for members inside an area of a box or a circle.
    static final Command
    Queries a geospatial index for members inside an area of a box or a circle, optionally stores the result.
    static final Command
    Command.GET
    Returns the string value of a key.
    static final Command
    Command.GETBIT
    Returns a bit value by offset.
    static final Command
    Command.GETDEL
    Returns the string value of a key after deleting the key.
    static final Command
    Command.GETEX
    Returns the string value of a key after setting its expiration time.
    static final Command
    Command.GETRANGE
    Returns a substring of the string stored at a key.
    static final Command
    Command.GETSET
    Deprecated.
    since Redis 6.2.0, replaced by: SET with the !GET argument
    static final Command
    Command.GRAPH_BULK
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Command.GRAPH_CONFIG
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Command.GRAPH_DEBUG
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Command.GRAPH_DELETE
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Command.GRAPH_LIST
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Command.GRAPH_QUERY
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Command.HDEL
    Deletes one or more fields and their values from a hash.
    static final Command
    Command.HELLO
    Handshakes with the Redis server.
    static final Command
    Command.HEXISTS
    Determines whether a field exists in a hash.
    static final Command
    Command.HEXPIRE
    Set expiry for hash field using relative time to expire (seconds).
    static final Command
    Command.HEXPIREAT
    Set expiry for hash field using an absolute Unix timestamp (seconds).
    static final Command
    Command.HEXPIRETIME
    Returns the expiration time of a hash field as a Unix timestamp, in seconds.
    static final Command
    Command.HGET
    Returns the value of a field in a hash.
    static final Command
    Command.HGETALL
    Returns all fields and values in a hash.
    static final Command
    Command.HGETDEL
    Returns the value of a field and deletes it from the hash.
    static final Command
    Command.HGETEX
    Get the value of one or more fields of a given hash key, and optionally set their expiration.
    static final Command
    Command.HINCRBY
    Increments the integer value of a field in a hash by a number.
    static final Command
    Command.HINCRBYFLOAT
    Increments the floating point value of a field by a number.
    static final Command
    Command.HKEYS
    Returns all fields in a hash.
    static final Command
    Command.HLEN
    Returns the number of fields in a hash.
    static final Command
    Command.HMGET
    Returns the values of all fields in a hash.
    static final Command
    Command.HMSET
    Deprecated.
    since Redis 4.0.0, replaced by: HSET with multiple field-value pairs
    static final Command
    Command.HOTKEYS
    A container for hotkeys tracking commands.
    static final Command
    Command.HPERSIST
    Removes the expiration time for each specified field.
    static final Command
    Command.HPEXPIRE
    Set expiry for hash field using relative time to expire (milliseconds).
    static final Command
    Command.HPEXPIREAT
    Set expiry for hash field using an absolute Unix timestamp (milliseconds).
    static final Command
    Command.HPEXPIRETIME
    Returns the expiration time of a hash field as a Unix timestamp, in msec.
    static final Command
    Command.HPTTL
    Returns the TTL in milliseconds of a hash field.
    static final Command
    Command.HRANDFIELD
    Returns one or more random fields from a hash.
    static final Command
    Command.HSCAN
    Iterates over fields and values of a hash.
    static final Command
    Command.HSET
    Creates or modifies the value of a field in a hash.
    static final Command
    Command.HSETEX
    Set the value of one or more fields of a given hash key, and optionally set their expiration.
    static final Command
    Command.HSETNX
    Sets the value of a field in a hash only when the field doesn't exist.
    static final Command
    Command.HSTRLEN
    Returns the length of the value of a field.
    static final Command
    Command.HTTL
    Returns the TTL in seconds of a hash field.
    static final Command
    Command.HVALS
    Returns all values in a hash.
    static final Command
    Command.INCR
    Increments the integer value of a key by one.
    static final Command
    Command.INCRBY
    Increments the integer value of a key by a number.
    static final Command
    Command.INCRBYFLOAT
    Increment the floating point value of a key by a number.
    static final Command
    Command.INFO
    Returns information and statistics about the server.
    static final Command
    Append the JSON values into the array at path after the last element in it.
    static final Command
    Search for the first occurrence of a JSON value in an array.
    static final Command
    Insert the json values into the array at path before the index (shifts to the right).
    static final Command
    Command.JSON_ARRLEN
    Report the length of the JSON array at path in key.
    static final Command
    Command.JSON_ARRPOP
    Remove and return the element at the specified index in the array at path.
    static final Command
    Command.JSON_ARRTRIM
    Trim an array so that it contains only the specified inclusive range of elements.
    static final Command
    Command.JSON_CLEAR
    Clear container values (arrays/objects) and set numeric values to 0.
    static final Command
    Command.JSON_DEBUG
    This is a container command for debugging related tasks.
    static final Command
    Command.JSON_DEL
    Delete a value.
    static final Command
    Command.JSON_FORGET
    Delete a value.
    static final Command
    Command.JSON_GET
    Get JSON value at path.
    static final Command
    Command.JSON_MERGE
    Merge a given JSON value into matching paths.
    static final Command
    Command.JSON_MGET
    Return the values at path from multiple key arguments.
    static final Command
    Command.JSON_MSET
    Set or update one or more JSON values according to the specified key-path-value triplets.
    static final Command
    Increment the number value stored at path by number.
    static final Command
    Multiply the number value stored at path by number.
    static final Command
    Raise the number value stored at path to the power of number.
    static final Command
    Command.JSON_OBJKEYS
    Return the keys in the object that's referenced by path.
    static final Command
    Command.JSON_OBJLEN
    Report the number of keys in the JSON object at path in key.
    static final Command
    Command.JSON_RESP
    Return the JSON in key in Redis serialization protocol specification form.
    static final Command
    Command.JSON_SET
    Set the JSON value at path in key.
    static final Command
    Append the json-string values to the string at path.
    static final Command
    Command.JSON_STRLEN
    Report the length of the JSON String at path in key.
    static final Command
    Command.JSON_TOGGLE
    Toggle the boolean value stored at path.
    static final Command
    Command.JSON_TYPE
    Report the type of JSON value at path.
    static final Command
    Command.KEYS
    Returns all key names that match a pattern.
    static final Command
    Command.LASTSAVE
    Returns the Unix timestamp of the last successful save to disk.
    static final Command
    Command.LATENCY
    A container for latency diagnostics commands.
    static final Command
    Command.LCS
    Finds the longest common substring.
    static final Command
    Command.LINDEX
    Returns an element from a list by its index.
    static final Command
    Command.LINSERT
    Inserts an element before or after another element in a list.
    static final Command
    Command.LLEN
    Returns the length of a list.
    static final Command
    Command.LMOVE
    Returns an element after popping it from one list and pushing it to another.
    static final Command
    Command.LMPOP
    Returns multiple elements from a list after removing them.
    static final Command
    Command.LOLWUT
    Displays computer art and the Redis version.
    static final Command
    Command.LPOP
    Returns the first elements in a list after removing it.
    static final Command
    Command.LPOS
    Returns the index of matching elements in a list.
    static final Command
    Command.LPUSH
    Prepends one or more elements to a list.
    static final Command
    Command.LPUSHX
    Prepends one or more elements to a list only when the list exists.
    static final Command
    Command.LRANGE
    Returns a range of elements from a list.
    static final Command
    Command.LREM
    Removes elements from a list.
    static final Command
    Command.LSET
    Sets the value of an element in a list by its index.
    static final Command
    Command.LTRIM
    Removes elements from both ends a list.
    static final Command
    Command.MEMORY
    A container for memory diagnostics commands.
    static final Command
    Command.MGET
    Atomically returns the string values of one or more keys.
    static final Command
    Command.MIGRATE
    Atomically transfers a key from one Redis instance to another.
    static final Command
    Command.MODULE
    A container for module commands.
    static final Command
    Command.MONITOR
    Listens for all requests received by the server in real-time.
    static final Command
    Command.MOVE
    Moves a key to another database.
    static final Command
    Command.MSET
    Atomically creates or modifies the string values of one or more keys.
    static final Command
    Command.MSETEX
    Atomically sets multiple string keys with a shared expiration in a single operation.
    static final Command
    Command.MSETNX
    Atomically modifies the string values of one or more keys only when all keys don't exist.
    static final Command
    Command.MULTI
    Starts a transaction.
    static final Command
    Command.OBJECT
    A container for object introspection commands.
    static final Command
    Command.PERSIST
    Removes the expiration time of a key.
    static final Command
    Command.PEXPIRE
    Sets the expiration time of a key in milliseconds.
    static final Command
    Command.PEXPIREAT
    Sets the expiration time of a key to a Unix milliseconds timestamp.
    static final Command
    Command.PEXPIRETIME
    Returns the expiration time of a key as a Unix milliseconds timestamp.
    static final Command
    Command.PFADD
    Adds elements to a HyperLogLog key.
    static final Command
    Command.PFCOUNT
    Returns the approximated cardinality of the set(s) observed by the HyperLogLog key(s).
    static final Command
    Command.PFDEBUG
    Internal commands for debugging HyperLogLog values.
    static final Command
    Command.PFMERGE
    Merges one or more HyperLogLog values into a single key.
    static final Command
    Command.PFSELFTEST
    An internal command for testing HyperLogLog values.
    static final Command
    Command.PING
    Returns the server's liveliness response.
    static final Command
    Command.PSETEX
    Deprecated.
    since Redis 2.6.12, replaced by: SET with the PX argument
    static final Command
    Command.PSUBSCRIBE
    Listens for messages published to channels that match one or more patterns.
    static final Command
    Command.PSYNC
    An internal command used in replication.
    static final Command
    Command.PTTL
    Returns the expiration time in milliseconds of a key.
    static final Command
    Command.PUBLISH
    Posts a message to a channel.
    static final Command
    Command.PUBSUB
    A container for Pub/Sub commands.
    static final Command
    Command.PUNSUBSCRIBE
    Stops listening to messages published to channels that match one or more patterns.
    static final Command
    Command.QUIT
    Deprecated.
    since Redis 7.2.0, replaced by: just closing the connection
    static final Command
    Command.RANDOMKEY
    Returns a random key name from the database.
    static final Command
    Command.READONLY
    Enables read-only queries for a connection to a Redis Cluster replica node.
    static final Command
    Command.READWRITE
    Enables read-write queries for a connection to a Reids Cluster replica node.
    static final Command
    Command.RENAME
    Renames a key and overwrites the destination.
    static final Command
    Command.RENAMENX
    Renames a key only when the target key name doesn't exist.
    static final Command
    Command.REPLCONF
    An internal command for configuring the replication stream.
    static final Command
    Command.REPLICAOF
    Configures a server as replica of another, or promotes it to a master.
    static final Command
    Command.RESET
    Resets the connection.
    static final Command
    Command.RESTORE
    Creates a key from the serialized representation of a value.
    static final Command
    An internal command for migrating keys in a cluster.
    static final Command
    Command.ROLE
    Returns the replication role.
    static final Command
    Command.RPOP
    Returns and removes the last elements of a list.
    static final Command
    Command.RPOPLPUSH
    Deprecated.
    since Redis 6.2.0, replaced by: LMOVE with the RIGHT and LEFT arguments
    static final Command
    Command.RPUSH
    Appends one or more elements to a list.
    static final Command
    Command.RPUSHX
    Appends an element to a list only when the list exists.
    static final Command
    Command.SADD
    Adds one or more members to a set.
    static final Command
    Command.SAVE
    Synchronously saves the database(s) to disk.
    static final Command
    Command.SCAN
    Iterates over the key names in the database.
    static final Command
    Command.SCARD
    Returns the number of members in a set.
    static final Command
    Command.SCRIPT
    A container for Lua scripts management commands.
    static final Command
    Command.SDIFF
    Returns the difference of multiple sets.
    static final Command
    Command.SDIFFSTORE
    Stores the difference of multiple sets in a key.
    static final Command
    This command only exists in Redis.
    static final Command
    This command only exists in Redis.
    static final Command
    This command only exists in Redis.
    static final Command
    Command.SELECT
    Changes the selected database.
    static final Command
    Command.SENTINEL
     
    static final Command
    Command.SET
    Sets the string value of a key, ignoring its type.
    static final Command
    Command.SETBIT
    Sets or clears the bit at offset of the string value.
    static final Command
    Command.SETEX
    Deprecated.
    since Redis 2.6.12, replaced by: SET with the EX argument
    static final Command
    Command.SETNX
    Deprecated.
    since Redis 2.6.12, replaced by: SET with the NX argument
    static final Command
    Command.SETRANGE
    Overwrites a part of a string value with another by an offset.
    static final Command
    Command.SHUTDOWN
    Synchronously saves the database(s) to disk and shuts down the Redis server.
    static final Command
    Command.SINTER
    Returns the intersect of multiple sets.
    static final Command
    Command.SINTERCARD
    Returns the number of members of the intersect of multiple sets.
    static final Command
    Command.SINTERSTORE
    Stores the intersect of multiple sets in a key.
    static final Command
    Command.SISMEMBER
    Determines whether a member belongs to a set.
    static final Command
    Command.SLAVEOF
    Deprecated.
    since Redis 5.0.0, replaced by: REPLICAOF
    static final Command
    Command.SLOWLOG
    A container for slow log commands.
    static final Command
    Command.SMEMBERS
    Returns all members of a set.
    static final Command
    Command.SMISMEMBER
    Determines whether multiple members belong to a set.
    static final Command
    Command.SMOVE
    Moves a member from one set to another.
    static final Command
    Command.SORT
    Sorts the elements in a list, a set, or a sorted set, optionally storing the result.
    static final Command
    Command.SORT_RO
    Returns the sorted elements of a list, a set, or a sorted set.
    static final Command
    Command.SPOP
    Returns one or more random members from a set after removing them.
    static final Command
    Command.SPUBLISH
    Post a message to a shard channel.
    static final Command
    Command.SRANDMEMBER
    Get one or multiple random members from a set.
    static final Command
    Command.SREM
    Removes one or more members from a set.
    static final Command
    Command.SSCAN
    Iterates over members of a set.
    static final Command
    Command.SSUBSCRIBE
    Listens for messages published to shard channels.
    static final Command
    Command.STRLEN
    Returns the length of a string value.
    static final Command
    Command.SUBSCRIBE
    Listens for messages published to channels.
    static final Command
    Command.SUBSTR
    Deprecated.
    since Redis 2.0.0, replaced by: GETRANGE
    static final Command
    Command.SUNION
    Returns the union of multiple sets.
    static final Command
    Command.SUNIONSTORE
    Stores the union of multiple sets in a key.
    static final Command
    Command.SUNSUBSCRIBE
    Stops listening to messages posted to shard channels.
    static final Command
    Command.SWAPDB
    Swaps two Redis databases.
    static final Command
    Command.SYNC
    An internal command used in replication.
    static final Command
    Command.TDIGEST_ADD
    Adds one or more observations to a t-digest sketch.
    static final Command
    Returns, for each input rank, an estimation of the value (floating-point) with that rank.
    static final Command
    Returns, for each input reverse rank, an estimation of the value (floating-point) with that reverse rank.
    static final Command
    Command.TDIGEST_CDF
    Returns, for each input value, an estimation of the floating-point fraction of (observations smaller than the given value + half the observations equal to the given value).
    static final Command
    Allocates memory and initializes a new t-digest sketch.
    static final Command
    Command.TDIGEST_INFO
    Returns information and statistics about a t-digest sketch.
    static final Command
    Command.TDIGEST_MAX
    Returns the maximum observation value from a t-digest sketch.
    static final Command
    Merges multiple t-digest sketches into a single sketch.
    static final Command
    Command.TDIGEST_MIN
    Returns the minimum observation value from a t-digest sketch.
    static final Command
    Returns, for each input fraction, an estimation of the value (floating point) that is smaller than the given fraction of observations.
    static final Command
    Command.TDIGEST_RANK
    Returns, for each input value (floating-point), the estimated rank of the value (the number of observations in the sketch that are smaller than the value + half the number of observations that are equal to the value).
    static final Command
    Resets a t-digest sketch: empty the sketch and re-initializes it.
    static final Command
    Returns, for each input value (floating-point), the estimated reverse rank of the value (the number of observations in the sketch that are larger than the value + half the number of observations that are equal to the value).
    static final Command
    Returns an estimation of the mean value from the sketch, excluding observation values outside the low and high cutoff quantiles.
    static final Command
    Command.TIME
    Returns the server time.
    static final Command
    This command only exists in Redis.
    static final Command
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    Deprecated.
    this command no longer exists in the latest Redis release
    static final Command
    This command only exists in Redis.
    static final Command
    Command.TOPK_ADD
    Adds an item to a Top-k sketch.
    static final Command
    Command.TOPK_COUNT
    Return the count for one or more items are in a sketch.
    static final Command
    Command.TOPK_INCRBY
    Increases the count of one or more items by increment.
    static final Command
    Command.TOPK_INFO
    Returns information about a sketch.
    static final Command
    Command.TOPK_LIST
    Return the full list of items in Top-K sketch.
    static final Command
    Command.TOPK_QUERY
    Checks whether one or more items are in a sketch.
    static final Command
    Command.TOPK_RESERVE
    Initializes a Top-K sketch with specified parameters.
    static final Command
    Command.TOUCH
    Returns the number of existing keys out of those specified after updating the time they were last accessed.
    static final Command
    Command.TRIMSLOTS
    Trim the keys that belong to specified slots.
    static final Command
    Command.TS_ADD
    Append a sample to a time series.
    static final Command
    Command.TS_ALTER
    Update the retention, chunk size, duplicate policy, and labels of an existing time series.
    static final Command
    Command.TS_CREATE
    Create a new time series.
    static final Command
    Create a compaction rule.
    static final Command
    Command.TS_DECRBY
    Decrease the value of the latest sample.
    static final Command
    Command.TS_DEL
    Delete all samples between two timestamps for a given time series.
    static final Command
    Delete a compaction rule.
    static final Command
    Command.TS_GET
    Get the sample with the highest timestamp from a given time series.
    static final Command
    Command.TS_INCRBY
    Increase the value of the latest sample.
    static final Command
    Command.TS_INFO
    Returns information and statistics for a time series.
    static final Command
    Command.TS_MADD
    Append new samples to one or more time series.
    static final Command
    Command.TS_MGET
    Get the sample with the highest timestamp from each time series matching a specific filter.
    static final Command
    Command.TS_MRANGE
    Query a range across multiple time series by filters in forward direction.
    static final Command
    Command.TS_MREVRANGE
    Query a range across multiple time series by filters in reverse direction.
    static final Command
    Get all time series keys matching a filter list.
    static final Command
    Command.TS_RANGE
    Query a range in forward direction.
    static final Command
    Command.TS_REVRANGE
    Query a range in reverse direction.
    static final Command
    Command.TTL
    Returns the expiration time in seconds of a key.
    static final Command
    Command.TYPE
    Determines the type of value stored at a key.
    static final Command
    Command.UNLINK
    Asynchronously deletes one or more keys.
    static final Command
    Command.UNSUBSCRIBE
    Stops listening to messages posted to channels.
    static final Command
    Command.UNWATCH
    Forgets about watched keys of a transaction.
    static final Command
    Command.VADD
    Add one or more elements to a vector set, or update its vector if it already exists.
    static final Command
    Command.VCARD
    Return the number of elements in a vector set.
    static final Command
    Command.VDIM
    Return the dimension of vectors in the vector set.
    static final Command
    Command.VEMB
    Return the vector associated with an element.
    static final Command
    Command.VGETATTR
    Retrieve the JSON attributes of elements.
    static final Command
    Command.VINFO
    Return information about a vector set.
    static final Command
    Command.VISMEMBER
    Check if an element exists in a vector set.
    static final Command
    Command.VLINKS
    Return the neighbors of an element at each layer in the HNSW graph.
    static final Command
    Command.VRANDMEMBER
    Return one or multiple random members from a vector set.
    static final Command
    Command.VRANGE
    Return vector set elements in a lex range.
    static final Command
    Command.VREM
    Remove an element from a vector set.
    static final Command
    Command.VSETATTR
    Associate or remove the JSON attributes of elements.
    static final Command
    Command.VSIM
    Return elements by vector similarity.
    static final Command
    Command.WAIT
    Blocks until the asynchronous replication of all preceding write commands sent by the connection is completed.
    static final Command
    Command.WAITAOF
    Blocks until all of the preceding write commands sent by the connection are written to the append-only file of the master and/or replicas.
    static final Command
    Command.WATCH
    Monitors changes to keys to determine the execution of a transaction.
    static final Command
    Command.XACK
    Returns the number of messages that were successfully acknowledged by the consumer group member of a stream.
    static final Command
    Command.XACKDEL
    Acknowledges and deletes one or multiple messages for a stream consumer group.
    static final Command
    Command.XADD
    Appends a new message to a stream.
    static final Command
    Command.XAUTOCLAIM
    Changes, or acquires, ownership of messages in a consumer group, as if the messages were delivered to as consumer group member.
    static final Command
    Command.XCFGSET
    Sets the IDMP configuration parameters for a stream.
    static final Command
    Command.XCLAIM
    Changes, or acquires, ownership of a message in a consumer group, as if the message was delivered a consumer group member.
    static final Command
    Command.XDEL
    Returns the number of messages after removing them from a stream.
    static final Command
    Command.XDELEX
    Deletes one or multiple entries from the stream.
    static final Command
    Command.XGROUP
    A container for consumer groups commands.
    static final Command
    Command.XIDMPRECORD
    An internal command for setting IDMP metadata on an existing stream message.
    static final Command
    Command.XINFO
    A container for stream introspection commands.
    static final Command
    Command.XLEN
    Return the number of messages in a stream.
    static final Command
    Command.XPENDING
    Returns the information and entries from a stream consumer group's pending entries list.
    static final Command
    Command.XRANGE
    Returns the messages from a stream within a range of IDs.
    static final Command
    Command.XREAD
    Returns messages from multiple streams with IDs greater than the ones requested.
    static final Command
    Command.XREADGROUP
    Returns new or historical messages from a stream for a consumer in a group.
    static final Command
    Command.XREVRANGE
    Returns the messages from a stream within a range of IDs in reverse order.
    static final Command
    Command.XSETID
    An internal command for replicating stream values.
    static final Command
    Command.XTRIM
    Deletes messages from the beginning of a stream.
    static final Command
    Command.ZADD
    Adds one or more members to a sorted set, or updates their scores.
    static final Command
    Command.ZCARD
    Returns the number of members in a sorted set.
    static final Command
    Command.ZCOUNT
    Returns the count of members in a sorted set that have scores within a range.
    static final Command
    Command.ZDIFF
    Returns the difference between multiple sorted sets.
    static final Command
    Command.ZDIFFSTORE
    Stores the difference of multiple sorted sets in a key.
    static final Command
    Command.ZINCRBY
    Increments the score of a member in a sorted set.
    static final Command
    Command.ZINTER
    Returns the intersect of multiple sorted sets.
    static final Command
    Command.ZINTERCARD
    Returns the number of members of the intersect of multiple sorted sets.
    static final Command
    Command.ZINTERSTORE
    Stores the intersect of multiple sorted sets in a key.
    static final Command
    Command.ZLEXCOUNT
    Returns the number of members in a sorted set within a lexicographical range.
    static final Command
    Command.ZMPOP
    Returns the highest- or lowest-scoring members from one or more sorted sets after removing them.
    static final Command
    Command.ZMSCORE
    Returns the score of one or more members in a sorted set.
    static final Command
    Command.ZPOPMAX
    Returns the highest-scoring members from a sorted set after removing them.
    static final Command
    Command.ZPOPMIN
    Returns the lowest-scoring members from a sorted set after removing them.
    static final Command
    Command.ZRANDMEMBER
    Returns one or more random members from a sorted set.
    static final Command
    Command.ZRANGE
    Returns members in a sorted set within a range of indexes.
    static final Command
    Command.ZRANGEBYLEX
    Deprecated.
    since Redis 6.2.0, replaced by: ZRANGE with the BYLEX argument
    static final Command
    Deprecated.
    since Redis 6.2.0, replaced by: ZRANGE with the BYSCORE argument
    static final Command
    Command.ZRANGESTORE
    Stores a range of members from sorted set in a key.
    static final Command
    Command.ZRANK
    Returns the index of a member in a sorted set ordered by ascending scores.
    static final Command
    Command.ZREM
    Removes one or more members from a sorted set.
    static final Command
    Removes members in a sorted set within a lexicographical range.
    static final Command
    Removes members in a sorted set within a range of indexes.
    static final Command
    Removes members in a sorted set within a range of scores.
    static final Command
    Command.ZREVRANGE
    Deprecated.
    since Redis 6.2.0, replaced by: ZRANGE with the REV argument
    static final Command
    Deprecated.
    since Redis 6.2.0, replaced by: ZRANGE with the REV and BYLEX arguments
    static final Command
    Deprecated.
    since Redis 6.2.0, replaced by: ZRANGE with the REV and BYSCORE arguments
    static final Command
    Command.ZREVRANK
    Returns the index of a member in a sorted set ordered by descending scores.
    static final Command
    Command.ZSCAN
    Iterates over members and scores of a sorted set.
    static final Command
    Command.ZSCORE
    Returns the score of a member in a sorted set.
    static final Command
    Command.ZUNION
    Returns the union of multiple sorted sets.
    static final Command
    Command.ZUNIONSTORE
    Stores the union of multiple sorted sets in a key.
    Methods in io.vertx.redis.client that return Command
    Modifier and Type
    Method
    Description
    Request.command()
    Get the Command that is to be used by this request.
    static Command
    Command.create(String command)
    Generic command generator for extensions.
    Methods in io.vertx.redis.client with parameters of type Command
    Modifier and Type
    Method
    Description
    static Request
    Request.cmd(Command command)
    Creates a new request.
    static Request
    Request.cmd(Command command, Object... args)
    Creates a new request only with simple types of arguments: Number, Boolean, String, byte[] or Buffer.
    RedisAPI.send(Command cmd, String... args)
    Send untyped command to Redis.
    ValkeyAPI.send(Command cmd, String... args)
    Send untyped command to Valkey.