Class Command

java.lang.Object
io.vertx.mutiny.redis.client.Command
All Implemented Interfaces:
MutinyDelegate

public class Command extends Object implements MutinyDelegate
Auto generated API Commands to interact with REDIS.

NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final TypeArg<Command> __TYPE_ARG
    • ACL

      public static final Command ACL
      A container for Access List Control commands.
    • APPEND

      public static final Command APPEND
      Append a value to a key.
    • ASKING

      public static final Command ASKING
      Sent by cluster clients after an -ASK redirect.
    • AUTH

      public static final Command AUTH
      Authenticate to the server.
    • BF_ADD

      public static final Command BF_ADD
    • BF_CARD

      public static final Command BF_CARD
    • BF_DEBUG

      public static final Command BF_DEBUG
    • BF_EXISTS

      public static final Command BF_EXISTS
    • BF_INFO

      public static final Command BF_INFO
    • BF_INSERT

      public static final Command BF_INSERT
    • BF_LOADCHUNK

      public static final Command BF_LOADCHUNK
    • BF_MADD

      public static final Command BF_MADD
    • BF_MEXISTS

      public static final Command BF_MEXISTS
    • BF_RESERVE

      public static final Command BF_RESERVE
    • BF_SCANDUMP

      public static final Command BF_SCANDUMP
    • BGREWRITEAOF

      public static final Command BGREWRITEAOF
      Asynchronously rewrite the append-only file.
    • BGSAVE

      public static final Command BGSAVE
      Asynchronously save the dataset to disk.
    • BITCOUNT

      public static final Command BITCOUNT
      Count set bits in a string.
    • BITFIELD

      public static final Command BITFIELD
      Perform arbitrary bitfield integer operations on strings.
    • BITFIELD_RO

      public static final Command BITFIELD_RO
      Perform arbitrary bitfield integer operations on strings. Read-only variant of BITFIELD.
    • BITOP

      public static final Command BITOP
      Perform bitwise operations between strings.
    • BITPOS

      public static final Command BITPOS
      Find first bit set or clear in a string.
    • BLMOVE

      public static final Command BLMOVE
      Pop an element from a list, push it to another list and return it; or block until one is available.
    • BLMPOP

      public static final Command BLMPOP
      Pop elements from a list, or block until one is available.
    • BLPOP

      public static final Command BLPOP
      Remove and get the first element in a list, or block until one is available.
    • BRPOP

      public static final Command BRPOP
      Remove and get the last element in a list, or block until one is available.
    • BRPOPLPUSH

      public static final Command BRPOPLPUSH
      Pop an element from a list, push it to another list and return it; or block until one is available.
    • BZMPOP

      public static final Command BZMPOP
      Remove and return members with scores in a sorted set or block until one is available.
    • BZPOPMAX

      public static final Command BZPOPMAX
      Remove and return the member with the highest score from one or more sorted sets, or block until one is available.
    • BZPOPMIN

      public static final Command BZPOPMIN
      Remove and return the member with the lowest score from one or more sorted sets, or block until one is available.
    • CF_ADD

      public static final Command CF_ADD
    • CF_ADDNX

      public static final Command CF_ADDNX
    • CF_COMPACT

      public static final Command CF_COMPACT
    • CF_COUNT

      public static final Command CF_COUNT
    • CF_DEBUG

      public static final Command CF_DEBUG
    • CF_DEL

      public static final Command CF_DEL
    • CF_EXISTS

      public static final Command CF_EXISTS
    • CF_INFO

      public static final Command CF_INFO
    • CF_INSERT

      public static final Command CF_INSERT
    • CF_INSERTNX

      public static final Command CF_INSERTNX
    • CF_LOADCHUNK

      public static final Command CF_LOADCHUNK
    • CF_MEXISTS

      public static final Command CF_MEXISTS
    • CF_RESERVE

      public static final Command CF_RESERVE
    • CF_SCANDUMP

      public static final Command CF_SCANDUMP
    • CLIENT

      public static final Command CLIENT
      A container for client connection commands.
    • CLUSTER

      public static final Command CLUSTER
      A container for cluster commands.
    • CMS_INCRBY

      public static final Command CMS_INCRBY
    • CMS_INFO

      public static final Command CMS_INFO
    • CMS_INITBYDIM

      public static final Command CMS_INITBYDIM
    • CMS_INITBYPROB

      public static final Command CMS_INITBYPROB
    • CMS_MERGE

      public static final Command CMS_MERGE
    • CMS_QUERY

      public static final Command CMS_QUERY
    • COMMAND

      public static final Command COMMAND
      Get array of Redis command details.
    • CONFIG

      public static final Command CONFIG
      A container for server configuration commands.
    • COPY

      public static final Command COPY
      Copy a key.
    • DBSIZE

      public static final Command DBSIZE
      Return the number of keys in the selected database.
    • DEBUG

      public static final Command DEBUG
      A container for debugging commands.
    • DECR

      public static final Command DECR
      Decrement the integer value of a key by one.
    • DECRBY

      public static final Command DECRBY
      Decrement the integer value of a key by the given number.
    • DEL

      public static final Command DEL
      Delete a key.
    • DISCARD

      public static final Command DISCARD
      Discard all commands issued after MULTI.
    • DUMP

      public static final Command DUMP
      Return a serialized version of the value stored at the specified key.
    • ECHO

      public static final Command ECHO
      Echo the given string.
    • EVAL

      public static final Command EVAL
      Execute a Lua script server side.
    • EVALSHA

      public static final Command EVALSHA
      Execute a Lua script server side.
    • EVALSHA_RO

      public static final Command EVALSHA_RO
      Execute a read-only Lua script server side.
    • EVAL_RO

      public static final Command EVAL_RO
      Execute a read-only Lua script server side.
    • EXEC

      public static final Command EXEC
      Execute all commands issued after MULTI.
    • EXISTS

      public static final Command EXISTS
      Determine if a key exists.
    • EXPIRE

      public static final Command EXPIRE
      Set a key's time to live in seconds.
    • EXPIREAT

      public static final Command EXPIREAT
      Set the expiration for a key as a UNIX timestamp.
    • EXPIRETIME

      public static final Command EXPIRETIME
      Get the expiration Unix timestamp for a key.
    • FAILOVER

      public static final Command FAILOVER
      Start a coordinated failover between this server and one of its replicas.
    • FCALL

      public static final Command FCALL
      Invoke a function.
    • FCALL_RO

      public static final Command FCALL_RO
      Invoke a read-only function.
    • FLUSHALL

      public static final Command FLUSHALL
      Remove all keys from all databases.
    • FLUSHDB

      public static final Command FLUSHDB
      Remove all keys from the current database.
    • FT_ADD

      public static final Command FT_ADD
    • FT_AGGREGATE

      public static final Command FT_AGGREGATE
    • FT_ALIASADD

      public static final Command FT_ALIASADD
    • FT_ALIASDEL

      public static final Command FT_ALIASDEL
    • FT_ALIASUPDATE

      public static final Command FT_ALIASUPDATE
    • FT_ALTER

      public static final Command FT_ALTER
    • FT_CONFIG

      public static final Command FT_CONFIG
    • FT_CREATE

      public static final Command FT_CREATE
    • FT_CURSOR

      public static final Command FT_CURSOR
    • FT_DEBUG

      public static final Command FT_DEBUG
    • FT_DEL

      public static final Command FT_DEL
    • FT_DICTADD

      public static final Command FT_DICTADD
    • FT_DICTDEL

      public static final Command FT_DICTDEL
    • FT_DICTDUMP

      public static final Command FT_DICTDUMP
    • FT_DROP

      public static final Command FT_DROP
    • FT_DROPINDEX

      public static final Command FT_DROPINDEX
    • FT_EXPLAIN

      public static final Command FT_EXPLAIN
    • FT_EXPLAINCLI

      public static final Command FT_EXPLAINCLI
    • FT_GET

      public static final Command FT_GET
    • FT_INFO

      public static final Command FT_INFO
    • FT_MGET

      public static final Command FT_MGET
    • FT_PROFILE

      public static final Command FT_PROFILE
    • FT_SAFEADD

      public static final Command FT_SAFEADD
    • FT_SPELLCHECK

      public static final Command FT_SPELLCHECK
    • FT_SUGADD

      public static final Command FT_SUGADD
    • FT_SUGDEL

      public static final Command FT_SUGDEL
    • FT_SUGGET

      public static final Command FT_SUGGET
    • FT_SUGLEN

      public static final Command FT_SUGLEN
    • FT_SYNADD

      public static final Command FT_SYNADD
    • FT_SYNDUMP

      public static final Command FT_SYNDUMP
    • FT_SYNUPDATE

      public static final Command FT_SYNUPDATE
    • FT_TAGVALS

      public static final Command FT_TAGVALS
    • FT__ALIASADDIFNX

      public static final Command FT__ALIASADDIFNX
    • FT__ALIASDELIFX

      public static final Command FT__ALIASDELIFX
    • FT__ALTERIFNX

      public static final Command FT__ALTERIFNX
    • FT__CREATEIFNX

      public static final Command FT__CREATEIFNX
    • FT__DROPIFX

      public static final Command FT__DROPIFX
    • FT__DROPINDEXIFX

      public static final Command FT__DROPINDEXIFX
    • FT__LIST

      public static final Command FT__LIST
    • FUNCTION

      public static final Command FUNCTION
      A container for function commands.
    • GEOADD

      public static final Command GEOADD
      Add one or more geospatial items in the geospatial index represented using a sorted set.
    • GEODIST

      public static final Command GEODIST
      Returns the distance between two members of a geospatial index.
    • GEOHASH

      public static final Command GEOHASH
      Returns members of a geospatial index as standard geohash strings.
    • GEOPOS

      public static final Command GEOPOS
      Returns longitude and latitude of members of a geospatial index.
    • GEORADIUS

      public static final Command GEORADIUS
      Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a point.
    • GEORADIUSBYMEMBER

      public static final Command GEORADIUSBYMEMBER
      Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a member.
    • GEORADIUSBYMEMBER_RO

      public static final Command GEORADIUSBYMEMBER_RO
      A read-only variant for GEORADIUSBYMEMBER.
    • GEORADIUS_RO

      public static final Command GEORADIUS_RO
      A read-only variant for GEORADIUS.
    • GEOSEARCH

      public static final Command GEOSEARCH
      Query a sorted set representing a geospatial index to fetch members inside an area of a box or a circle.
    • GEOSEARCHSTORE

      public static final Command GEOSEARCHSTORE
      Query a sorted set representing a geospatial index to fetch members inside an area of a box or a circle, and store the result in another key.
    • GET

      public static final Command GET
      Get the value of a key.
    • GETBIT

      public static final Command GETBIT
      Returns the bit value at offset in the string value stored at key.
    • GETDEL

      public static final Command GETDEL
      Get the value of a key and delete the key.
    • GETEX

      public static final Command GETEX
      Get the value of a key and optionally set its expiration.
    • GETRANGE

      public static final Command GETRANGE
      Get a substring of the string stored at a key.
    • GETSET

      public static final Command GETSET
      Set the string value of a key and return its old value.
    • GRAPH_BULK

      public static final Command GRAPH_BULK
    • GRAPH_CONFIG

      public static final Command GRAPH_CONFIG
    • GRAPH_DEBUG

      public static final Command GRAPH_DEBUG
    • GRAPH_DELETE

      public static final Command GRAPH_DELETE
    • GRAPH_EXPLAIN

      public static final Command GRAPH_EXPLAIN
    • GRAPH_LIST

      public static final Command GRAPH_LIST
    • GRAPH_PROFILE

      public static final Command GRAPH_PROFILE
    • GRAPH_QUERY

      public static final Command GRAPH_QUERY
    • GRAPH_RO_QUERY

      public static final Command GRAPH_RO_QUERY
    • GRAPH_SLOWLOG

      public static final Command GRAPH_SLOWLOG
    • HDEL

      public static final Command HDEL
      Delete one or more hash fields.
    • HELLO

      public static final Command HELLO
      Handshake with Redis.
    • HEXISTS

      public static final Command HEXISTS
      Determine if a hash field exists.
    • HGET

      public static final Command HGET
      Get the value of a hash field.
    • HGETALL

      public static final Command HGETALL
      Get all the fields and values in a hash.
    • HINCRBY

      public static final Command HINCRBY
      Increment the integer value of a hash field by the given number.
    • HINCRBYFLOAT

      public static final Command HINCRBYFLOAT
      Increment the float value of a hash field by the given amount.
    • HKEYS

      public static final Command HKEYS
      Get all the fields in a hash.
    • HLEN

      public static final Command HLEN
      Get the number of fields in a hash.
    • HMGET

      public static final Command HMGET
      Get the values of all the given hash fields.
    • HMSET

      public static final Command HMSET
      Set multiple hash fields to multiple values.
    • HRANDFIELD

      public static final Command HRANDFIELD
      Get one or multiple random fields from a hash.
    • HSCAN

      public static final Command HSCAN
      Incrementally iterate hash fields and associated values.
    • HSET

      public static final Command HSET
      Set the string value of a hash field.
    • HSETNX

      public static final Command HSETNX
      Set the value of a hash field, only if the field does not exist.
    • HSTRLEN

      public static final Command HSTRLEN
      Get the length of the value of a hash field.
    • HVALS

      public static final Command HVALS
      Get all the values in a hash.
    • INCR

      public static final Command INCR
      Increment the integer value of a key by one.
    • INCRBY

      public static final Command INCRBY
      Increment the integer value of a key by the given amount.
    • INCRBYFLOAT

      public static final Command INCRBYFLOAT
      Increment the float value of a key by the given amount.
    • INFO

      public static final Command INFO
      Get information and statistics about the server.
    • JSON_ARRAPPEND

      public static final Command JSON_ARRAPPEND
    • JSON_ARRINDEX

      public static final Command JSON_ARRINDEX
    • JSON_ARRINSERT

      public static final Command JSON_ARRINSERT
    • JSON_ARRLEN

      public static final Command JSON_ARRLEN
    • JSON_ARRPOP

      public static final Command JSON_ARRPOP
    • JSON_ARRTRIM

      public static final Command JSON_ARRTRIM
    • JSON_CLEAR

      public static final Command JSON_CLEAR
    • JSON_DEBUG

      public static final Command JSON_DEBUG
    • JSON_DEL

      public static final Command JSON_DEL
    • JSON_FORGET

      public static final Command JSON_FORGET
    • JSON_GET

      public static final Command JSON_GET
    • JSON_MGET

      public static final Command JSON_MGET
    • JSON_NUMINCRBY

      public static final Command JSON_NUMINCRBY
    • JSON_NUMMULTBY

      public static final Command JSON_NUMMULTBY
    • JSON_NUMPOWBY

      public static final Command JSON_NUMPOWBY
    • JSON_OBJKEYS

      public static final Command JSON_OBJKEYS
    • JSON_OBJLEN

      public static final Command JSON_OBJLEN
    • JSON_RESP

      public static final Command JSON_RESP
    • JSON_SET

      public static final Command JSON_SET
    • JSON_STRAPPEND

      public static final Command JSON_STRAPPEND
    • JSON_STRLEN

      public static final Command JSON_STRLEN
    • JSON_TOGGLE

      public static final Command JSON_TOGGLE
    • JSON_TYPE

      public static final Command JSON_TYPE
    • KEYS

      public static final Command KEYS
      Find all keys matching the given pattern.
    • LASTSAVE

      public static final Command LASTSAVE
      Get the UNIX time stamp of the last successful save to disk.
    • LATENCY

      public static final Command LATENCY
      A container for latency diagnostics commands.
    • LCS

      public static final Command LCS
      Find longest common substring.
    • LINDEX

      public static final Command LINDEX
      Get an element from a list by its index.
    • LINSERT

      public static final Command LINSERT
      Insert an element before or after another element in a list.
    • LLEN

      public static final Command LLEN
      Get the length of a list.
    • LMOVE

      public static final Command LMOVE
      Pop an element from a list, push it to another list and return it.
    • LMPOP

      public static final Command LMPOP
      Pop elements from a list.
    • LOLWUT

      public static final Command LOLWUT
      Display some computer art and the Redis version.
    • LPOP

      public static final Command LPOP
      Remove and get the first elements in a list.
    • LPOS

      public static final Command LPOS
      Return the index of matching elements on a list.
    • LPUSH

      public static final Command LPUSH
      Prepend one or multiple elements to a list.
    • LPUSHX

      public static final Command LPUSHX
      Prepend an element to a list, only if the list exists.
    • LRANGE

      public static final Command LRANGE
      Get a range of elements from a list.
    • LREM

      public static final Command LREM
      Remove elements from a list.
    • LSET

      public static final Command LSET
      Set the value of an element in a list by its index.
    • LTRIM

      public static final Command LTRIM
      Trim a list to the specified range.
    • MEMORY

      public static final Command MEMORY
      A container for memory diagnostics commands.
    • MGET

      public static final Command MGET
      Get the values of all the given keys.
    • MIGRATE

      public static final Command MIGRATE
      Atomically transfer a key from a Redis instance to another one.
    • MODULE

      public static final Command MODULE
      A container for module commands.
    • MONITOR

      public static final Command MONITOR
      Listen for all requests received by the server in real time.
    • MOVE

      public static final Command MOVE
      Move a key to another database.
    • MSET

      public static final Command MSET
      Set multiple keys to multiple values.
    • MSETNX

      public static final Command MSETNX
      Set multiple keys to multiple values, only if none of the keys exist.
    • MULTI

      public static final Command MULTI
      Mark the start of a transaction block.
    • OBJECT

      public static final Command OBJECT
      A container for object introspection commands.
    • PERSIST

      public static final Command PERSIST
      Remove the expiration from a key.
    • PEXPIRE

      public static final Command PEXPIRE
      Set a key's time to live in milliseconds.
    • PEXPIREAT

      public static final Command PEXPIREAT
      Set the expiration for a key as a UNIX timestamp specified in milliseconds.
    • PEXPIRETIME

      public static final Command PEXPIRETIME
      Get the expiration Unix timestamp for a key in milliseconds.
    • PFADD

      public static final Command PFADD
      Adds the specified elements to the specified HyperLogLog.
    • PFCOUNT

      public static final Command PFCOUNT
      Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s).
    • PFDEBUG

      public static final Command PFDEBUG
      Internal commands for debugging HyperLogLog values.
    • PFMERGE

      public static final Command PFMERGE
      Merge N different HyperLogLogs into a single one.
    • PFSELFTEST

      public static final Command PFSELFTEST
      An internal command for testing HyperLogLog values.
    • PING

      public static final Command PING
      Ping the server.
    • PSETEX

      public static final Command PSETEX
      Set the value and expiration in milliseconds of a key.
    • PSUBSCRIBE

      public static final Command PSUBSCRIBE
      Listen for messages published to channels matching the given patterns.
    • PSYNC

      public static final Command PSYNC
      Internal command used for replication.
    • PTTL

      public static final Command PTTL
      Get the time to live for a key in milliseconds.
    • PUBLISH

      public static final Command PUBLISH
      Post a message to a channel.
    • PUBSUB

      public static final Command PUBSUB
      A container for Pub/Sub commands.
    • PUNSUBSCRIBE

      public static final Command PUNSUBSCRIBE
      Stop listening for messages posted to channels matching the given patterns.
    • QUIT

      public static final Command QUIT
      Close the connection.
    • RANDOMKEY

      public static final Command RANDOMKEY
      Return a random key from the keyspace.
    • READONLY

      public static final Command READONLY
      Enables read queries for a connection to a cluster replica node.
    • READWRITE

      public static final Command READWRITE
      Disables read queries for a connection to a cluster replica node.
    • RENAME

      public static final Command RENAME
      Rename a key.
    • RENAMENX

      public static final Command RENAMENX
      Rename a key, only if the new key does not exist.
    • REPLCONF

      public static final Command REPLCONF
      An internal command for configuring the replication stream.
    • REPLICAOF

      public static final Command REPLICAOF
      Make the server a replica of another instance, or promote it as master.
    • RESET

      public static final Command RESET
      Reset the connection.
    • RESTORE

      public static final Command RESTORE
      Create a key using the provided serialized value, previously obtained using DUMP.
    • RESTORE_ASKING

      public static final Command RESTORE_ASKING
      An internal command for migrating keys in a cluster.
    • ROLE

      public static final Command ROLE
      Return the role of the instance in the context of replication.
    • RPOP

      public static final Command RPOP
      Remove and get the last elements in a list.
    • RPOPLPUSH

      public static final Command RPOPLPUSH
      Remove the last element in a list, prepend it to another list and return it.
    • RPUSH

      public static final Command RPUSH
      Append one or multiple elements to a list.
    • RPUSHX

      public static final Command RPUSHX
      Append an element to a list, only if the list exists.
    • SADD

      public static final Command SADD
      Add one or more members to a set.
    • SAVE

      public static final Command SAVE
      Synchronously save the dataset to disk.
    • SCAN

      public static final Command SCAN
      Incrementally iterate the keys space.
    • SCARD

      public static final Command SCARD
      Get the number of members in a set.
    • SCRIPT

      public static final Command SCRIPT
      A container for Lua scripts management commands.
    • SDIFF

      public static final Command SDIFF
      Subtract multiple sets.
    • SDIFFSTORE

      public static final Command SDIFFSTORE
      Subtract multiple sets and store the resulting set in a key.
    • SELECT

      public static final Command SELECT
      Change the selected database for the current connection.
    • SET

      public static final Command SET
      Set the string value of a key.
    • SETBIT

      public static final Command SETBIT
      Sets or clears the bit at offset in the string value stored at key.
    • SETEX

      public static final Command SETEX
      Set the value and expiration of a key.
    • SETNX

      public static final Command SETNX
      Set the value of a key, only if the key does not exist.
    • SETRANGE

      public static final Command SETRANGE
      Overwrite part of a string at key starting at the specified offset.
    • SHUTDOWN

      public static final Command SHUTDOWN
      Synchronously save the dataset to disk and then shut down the server.
    • SINTER

      public static final Command SINTER
      Intersect multiple sets.
    • SINTERCARD

      public static final Command SINTERCARD
      Intersect multiple sets and return the cardinality of the result.
    • SINTERSTORE

      public static final Command SINTERSTORE
      Intersect multiple sets and store the resulting set in a key.
    • SISMEMBER

      public static final Command SISMEMBER
      Determine if a given value is a member of a set.
    • SLAVEOF

      public static final Command SLAVEOF
      Make the server a replica of another instance, or promote it as master.
    • SLOWLOG

      public static final Command SLOWLOG
      A container for slow log commands.
    • SMEMBERS

      public static final Command SMEMBERS
      Get all the members in a set.
    • SMISMEMBER

      public static final Command SMISMEMBER
      Returns the membership associated with the given elements for a set.
    • SMOVE

      public static final Command SMOVE
      Move a member from one set to another.
    • SORT

      public static final Command SORT
      Sort the elements in a list, set or sorted set.
    • SORT_RO

      public static final Command SORT_RO
      Sort the elements in a list, set or sorted set. Read-only variant of SORT.
    • SPOP

      public static final Command SPOP
      Remove and return one or multiple random members from a set.
    • SPUBLISH

      public static final Command SPUBLISH
      Post a message to a shard channel.
    • SRANDMEMBER

      public static final Command SRANDMEMBER
      Get one or multiple random members from a set.
    • SREM

      public static final Command SREM
      Remove one or more members from a set.
    • SSCAN

      public static final Command SSCAN
      Incrementally iterate Set elements.
    • SSUBSCRIBE

      public static final Command SSUBSCRIBE
      Listen for messages published to the given shard channels.
    • STRLEN

      public static final Command STRLEN
      Get the length of the value stored in a key.
    • SUBSCRIBE

      public static final Command SUBSCRIBE
      Listen for messages published to the given channels.
    • SUBSTR

      public static final Command SUBSTR
      Get a substring of the string stored at a key.
    • SUNION

      public static final Command SUNION
      Add multiple sets.
    • SUNIONSTORE

      public static final Command SUNIONSTORE
      Add multiple sets and store the resulting set in a key.
    • SUNSUBSCRIBE

      public static final Command SUNSUBSCRIBE
      Stop listening for messages posted to the given shard channels.
    • SWAPDB

      public static final Command SWAPDB
      Swaps two Redis databases.
    • SYNC

      public static final Command SYNC
      Internal command used for replication.
    • TDIGEST_ADD

      public static final Command TDIGEST_ADD
    • TDIGEST_BYRANK

      public static final Command TDIGEST_BYRANK
    • TDIGEST_BYREVRANK

      public static final Command TDIGEST_BYREVRANK
    • TDIGEST_CDF

      public static final Command TDIGEST_CDF
    • TDIGEST_CREATE

      public static final Command TDIGEST_CREATE
    • TDIGEST_INFO

      public static final Command TDIGEST_INFO
    • TDIGEST_MAX

      public static final Command TDIGEST_MAX
    • TDIGEST_MERGE

      public static final Command TDIGEST_MERGE
    • TDIGEST_MIN

      public static final Command TDIGEST_MIN
    • TDIGEST_QUANTILE

      public static final Command TDIGEST_QUANTILE
    • TDIGEST_RANK

      public static final Command TDIGEST_RANK
    • TDIGEST_RESET

      public static final Command TDIGEST_RESET
    • TDIGEST_REVRANK

      public static final Command TDIGEST_REVRANK
    • TDIGEST_TRIMMED_MEAN

      public static final Command TDIGEST_TRIMMED_MEAN
    • TIME

      public static final Command TIME
      Return the current server time.
    • TIMESERIES_CLUSTERSET

      public static final Command TIMESERIES_CLUSTERSET
    • TIMESERIES_CLUSTERSETFROMSHARD

      public static final Command TIMESERIES_CLUSTERSETFROMSHARD
    • TIMESERIES_HELLO

      public static final Command TIMESERIES_HELLO
    • TIMESERIES_INFOCLUSTER

      public static final Command TIMESERIES_INFOCLUSTER
    • TIMESERIES_INNERCOMMUNICATION

      public static final Command TIMESERIES_INNERCOMMUNICATION
    • TIMESERIES_NETWORKTEST

      public static final Command TIMESERIES_NETWORKTEST
    • TIMESERIES_REFRESHCLUSTER

      public static final Command TIMESERIES_REFRESHCLUSTER
    • TOPK_ADD

      public static final Command TOPK_ADD
    • TOPK_COUNT

      public static final Command TOPK_COUNT
    • TOPK_INCRBY

      public static final Command TOPK_INCRBY
    • TOPK_INFO

      public static final Command TOPK_INFO
    • TOPK_LIST

      public static final Command TOPK_LIST
    • TOPK_QUERY

      public static final Command TOPK_QUERY
    • TOPK_RESERVE

      public static final Command TOPK_RESERVE
    • TOUCH

      public static final Command TOUCH
      Alters the last access time of a key(s). Returns the number of existing keys specified.
    • TS_ADD

      public static final Command TS_ADD
    • TS_ALTER

      public static final Command TS_ALTER
    • TS_CREATE

      public static final Command TS_CREATE
    • TS_CREATERULE

      public static final Command TS_CREATERULE
    • TS_DECRBY

      public static final Command TS_DECRBY
    • TS_DEL

      public static final Command TS_DEL
    • TS_DELETERULE

      public static final Command TS_DELETERULE
    • TS_GET

      public static final Command TS_GET
    • TS_INCRBY

      public static final Command TS_INCRBY
    • TS_INFO

      public static final Command TS_INFO
    • TS_MADD

      public static final Command TS_MADD
    • TS_MGET

      public static final Command TS_MGET
    • TS_MRANGE

      public static final Command TS_MRANGE
    • TS_MREVRANGE

      public static final Command TS_MREVRANGE
    • TS_QUERYINDEX

      public static final Command TS_QUERYINDEX
    • TS_RANGE

      public static final Command TS_RANGE
    • TS_REVRANGE

      public static final Command TS_REVRANGE
    • TTL

      public static final Command TTL
      Get the time to live for a key in seconds.
    • TYPE

      public static final Command TYPE
      Determine the type stored at key.
    • UNSUBSCRIBE

      public static final Command UNSUBSCRIBE
      Stop listening for messages posted to the given channels.
    • UNWATCH

      public static final Command UNWATCH
      Forget about all watched keys.
    • WAIT

      public static final Command WAIT
      Wait for the synchronous replication of all the write commands sent in the context of the current connection.
    • WATCH

      public static final Command WATCH
      Watch the given keys to determine execution of the MULTI/EXEC block.
    • XACK

      public static final Command XACK
      Marks a pending message as correctly processed, effectively removing it from the pending entries list of the consumer group. Return value of the command is the number of messages successfully acknowledged, that is, the IDs we were actually able to resolve in the PEL.
    • XADD

      public static final Command XADD
      Appends a new entry to a stream.
    • XAUTOCLAIM

      public static final Command XAUTOCLAIM
      Changes (or acquires) ownership of messages in a consumer group, as if the messages were delivered to the specified consumer.
    • XCLAIM

      public static final Command XCLAIM
      Changes (or acquires) ownership of a message in a consumer group, as if the message was delivered to the specified consumer.
    • XDEL

      public static final Command XDEL
      Removes the specified entries from the stream. Returns the number of items actually deleted, that may be different from the number of IDs passed in case certain IDs do not exist.
    • XGROUP

      public static final Command XGROUP
      A container for consumer groups commands.
    • XINFO

      public static final Command XINFO
      A container for stream introspection commands.
    • XLEN

      public static final Command XLEN
      Return the number of entries in a stream.
    • XPENDING

      public static final Command XPENDING
      Return information and entries from a stream consumer group pending entries list, that are messages fetched but never acknowledged.
    • XRANGE

      public static final Command XRANGE
      Return a range of elements in a stream, with IDs matching the specified IDs interval.
    • XREAD

      public static final Command XREAD
      Return never seen elements in multiple streams, with IDs greater than the ones reported by the caller for each stream. Can block.
    • XREADGROUP

      public static final Command XREADGROUP
      Return new entries from a stream using a consumer group, or access the history of the pending entries for a given consumer. Can block.
    • XREVRANGE

      public static final Command XREVRANGE
      Return a range of elements in a stream, with IDs matching the specified IDs interval, in reverse order (from greater to smaller IDs) compared to XRANGE.
    • XSETID

      public static final Command XSETID
      An internal command for replicating stream values.
    • XTRIM

      public static final Command XTRIM
      Trims the stream to (approximately if '~' is passed) a certain size.
    • ZADD

      public static final Command ZADD
      Add one or more members to a sorted set, or update its score if it already exists.
    • ZCARD

      public static final Command ZCARD
      Get the number of members in a sorted set.
    • ZCOUNT

      public static final Command ZCOUNT
      Count the members in a sorted set with scores within the given values.
    • ZDIFF

      public static final Command ZDIFF
      Subtract multiple sorted sets.
    • ZDIFFSTORE

      public static final Command ZDIFFSTORE
      Subtract multiple sorted sets and store the resulting sorted set in a new key.
    • ZINCRBY

      public static final Command ZINCRBY
      Increment the score of a member in a sorted set.
    • ZINTER

      public static final Command ZINTER
      Intersect multiple sorted sets.
    • ZINTERCARD

      public static final Command ZINTERCARD
      Intersect multiple sorted sets and return the cardinality of the result.
    • ZINTERSTORE

      public static final Command ZINTERSTORE
      Intersect multiple sorted sets and store the resulting sorted set in a new key.
    • ZLEXCOUNT

      public static final Command ZLEXCOUNT
      Count the number of members in a sorted set between a given lexicographical range.
    • ZMPOP

      public static final Command ZMPOP
      Remove and return members with scores in a sorted set.
    • ZMSCORE

      public static final Command ZMSCORE
      Get the score associated with the given members in a sorted set.
    • ZPOPMAX

      public static final Command ZPOPMAX
      Remove and return members with the highest scores in a sorted set.
    • ZPOPMIN

      public static final Command ZPOPMIN
      Remove and return members with the lowest scores in a sorted set.
    • ZRANDMEMBER

      public static final Command ZRANDMEMBER
      Get one or multiple random elements from a sorted set.
    • ZRANGE

      public static final Command ZRANGE
      Return a range of members in a sorted set.
    • ZRANGEBYLEX

      public static final Command ZRANGEBYLEX
      Return a range of members in a sorted set, by lexicographical range.
    • ZRANGEBYSCORE

      public static final Command ZRANGEBYSCORE
      Return a range of members in a sorted set, by score.
    • ZRANGESTORE

      public static final Command ZRANGESTORE
      Store a range of members from sorted set into another key.
    • ZRANK

      public static final Command ZRANK
      Determine the index of a member in a sorted set.
    • ZREM

      public static final Command ZREM
      Remove one or more members from a sorted set.
    • ZREMRANGEBYLEX

      public static final Command ZREMRANGEBYLEX
      Remove all members in a sorted set between the given lexicographical range.
    • ZREMRANGEBYRANK

      public static final Command ZREMRANGEBYRANK
      Remove all members in a sorted set within the given indexes.
    • ZREMRANGEBYSCORE

      public static final Command ZREMRANGEBYSCORE
      Remove all members in a sorted set within the given scores.
    • ZREVRANGE

      public static final Command ZREVRANGE
      Return a range of members in a sorted set, by index, with scores ordered from high to low.
    • ZREVRANGEBYLEX

      public static final Command ZREVRANGEBYLEX
      Return a range of members in a sorted set, by lexicographical range, ordered from higher to lower strings.
    • ZREVRANGEBYSCORE

      public static final Command ZREVRANGEBYSCORE
      Return a range of members in a sorted set, by score, with scores ordered from high to low.
    • ZREVRANK

      public static final Command ZREVRANK
      Determine the index of a member in a sorted set, with scores ordered from high to low.
    • ZSCAN

      public static final Command ZSCAN
      Incrementally iterate sorted sets elements and associated scores.
    • ZSCORE

      public static final Command ZSCORE
      Get the score associated with the given member in a sorted set.
    • ZUNION

      public static final Command ZUNION
      Add multiple sorted sets.
    • ZUNIONSTORE

      public static final Command ZUNIONSTORE
      Add multiple sorted sets and store the resulting sorted set in a new key.
    • SENTINEL

      public static final Command SENTINEL
  • Constructor Details

    • Command

      public Command(io.vertx.redis.client.Command delegate)
    • Command

      public Command(Object delegate)
  • Method Details

    • getDelegate

      public io.vertx.redis.client.Command getDelegate()
      Specified by:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate used by this Mutiny object of generated type
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • create

      public static Command create(String command)
      Parameters:
      command - command name
      Returns:
      the cacheable immutable command instance
    • newInstance

      public static Command newInstance(io.vertx.redis.client.Command arg)