| Field and Description |
|---|
| io.vertx.redis.client.Command.BRPOPLPUSH
since: 6.2.0, replaced by:
BLMOVE with the RIGHT and LEFT arguments |
| io.vertx.redis.client.Command.GEORADIUS
since: 6.2.0, replaced by:
GEOSEARCH and GEOSEARCHSTORE with the BYRADIUS argument |
| io.vertx.redis.client.Command.GEORADIUS_RO
since: 6.2.0, replaced by:
GEOSEARCH with the BYRADIUS argument |
| io.vertx.redis.client.Command.GEORADIUSBYMEMBER
since: 6.2.0, replaced by:
GEOSEARCH and GEOSEARCHSTORE with the BYRADIUS and FROMMEMBER arguments |
| io.vertx.redis.client.Command.GEORADIUSBYMEMBER_RO
since: 6.2.0, replaced by:
GEOSEARCH with the BYRADIUS and FROMMEMBER arguments |
| io.vertx.redis.client.Command.GETSET
since: 6.2.0, replaced by:
SET with the !GET argument |
| io.vertx.redis.client.Command.HMSET
since: 4.0.0, replaced by:
HSET with multiple field-value pairs |
| io.vertx.redis.client.Command.RPOPLPUSH
since: 6.2.0, replaced by:
LMOVE with the RIGHT and LEFT arguments |
| io.vertx.redis.client.Command.SLAVEOF
since: 5.0.0, replaced by:
REPLICAOF |
| io.vertx.redis.client.Command.SUBSTR
since: 2.0.0, replaced by:
GETRANGE |
| io.vertx.redis.client.Command.ZRANGEBYLEX
since: 6.2.0, replaced by:
ZRANGE with the BYLEX argument |
| io.vertx.redis.client.Command.ZRANGEBYSCORE
since: 6.2.0, replaced by:
ZRANGE with the BYSCORE argument |
| io.vertx.redis.client.Command.ZREVRANGE
since: 6.2.0, replaced by:
ZRANGE with the REV argument |
| io.vertx.redis.client.Command.ZREVRANGEBYLEX
since: 6.2.0, replaced by:
ZRANGE with the REV and BYLEX arguments |
| io.vertx.redis.client.Command.ZREVRANGEBYSCORE
since: 6.2.0, replaced by:
ZRANGE with the REV and BYSCORE arguments |
| Method and Description |
|---|
| io.vertx.redis.client.RedisOptions.addEndpoint(String)
see
RedisOptions.setConnectionString(String connectionString) for a better naming |
| io.vertx.redis.client.RedisAPI.brpoplpush(String, String, String)
since: 6.2.0, replaced by:
BLMOVE with the RIGHT and LEFT arguments |
| io.vertx.redis.client.RedisAPI.georadius(List<String>)
since: 6.2.0, replaced by:
GEOSEARCH and GEOSEARCHSTORE with the BYRADIUS argument |
| io.vertx.redis.client.RedisAPI.georadiusbymember(List<String>)
since: 6.2.0, replaced by:
GEOSEARCH and GEOSEARCHSTORE with the BYRADIUS and FROMMEMBER arguments |
| io.vertx.redis.client.RedisAPI.georadiusbymemberRo(List<String>)
since: 6.2.0, replaced by:
GEOSEARCH with the BYRADIUS and FROMMEMBER arguments |
| io.vertx.redis.client.RedisAPI.georadiusRo(List<String>)
since: 6.2.0, replaced by:
GEOSEARCH with the BYRADIUS argument |
| io.vertx.redis.client.RedisAPI.getset(String, String)
since: 6.2.0, replaced by:
SET with the !GET argument |
| io.vertx.redis.client.RedisAPI.hmset(List<String>)
since: 4.0.0, replaced by:
HSET with multiple field-value pairs |
| io.vertx.redis.client.Request.nullArg()
REDIS does not support
null as a parameter, only as response. This was a deviation from the
official protocol which should be avoided. Other clients explicitly do not allow this.
Adds a null encoded string. Redis does not allow storing the null value by itself. This method
will encode any null value as the four character long string "null".
As a recommendation, this method should not be used directly unless this is the intented behavior. It is present
to handle special cases such as encoding of JsonObject and JsonArray which may contain null values. |
| io.vertx.redis.client.RedisAPI.rpoplpush(String, String)
since: 6.2.0, replaced by:
LMOVE with the RIGHT and LEFT arguments |
| io.vertx.redis.client.RedisOptions.setEndpoint(String)
see
RedisOptions.setConnectionString(String connectionString) for a better naming |
| io.vertx.redis.client.RedisAPI.slaveof(String, String)
since: 5.0.0, replaced by:
REPLICAOF |
| io.vertx.redis.client.RedisAPI.substr(String, String, String)
since: 2.0.0, replaced by:
GETRANGE |
| io.vertx.redis.client.RedisAPI.zrangebylex(List<String>)
since: 6.2.0, replaced by:
ZRANGE with the BYLEX argument |
| io.vertx.redis.client.RedisAPI.zrangebyscore(List<String>)
since: 6.2.0, replaced by:
ZRANGE with the BYSCORE argument |
| io.vertx.redis.client.RedisAPI.zrevrange(List<String>)
since: 6.2.0, replaced by:
ZRANGE with the REV argument |
| io.vertx.redis.client.RedisAPI.zrevrangebylex(List<String>)
since: 6.2.0, replaced by:
ZRANGE with the REV and BYLEX arguments |
| io.vertx.redis.client.RedisAPI.zrevrangebyscore(List<String>)
since: 6.2.0, replaced by:
ZRANGE with the REV and BYSCORE arguments |
Copyright © 2025 Eclipse. All rights reserved.