Interface and Description |
---|
io.vertx.redis.RedisClient |
io.vertx.redis.sentinel.RedisSentinel |
io.vertx.redis.RedisTransaction |
io.vertx.redis.Script |
Class and Description |
---|
io.vertx.redis.op.BitFieldGetCommand
Use
Redis |
io.vertx.redis.op.BitFieldIncrbyCommand
Use
Redis |
io.vertx.redis.op.BitFieldOptions
Use
Redis |
io.vertx.redis.op.BitFieldSetCommand
Use
Redis |
io.vertx.redis.op.GeoMember
Use
Redis |
io.vertx.redis.op.GeoRadiusOptions
Use
Redis |
io.vertx.redis.op.KillFilter
Use
Redis |
io.vertx.redis.op.LimitOptions
Use
Redis |
io.vertx.redis.op.MigrateOptions
Use
Redis |
io.vertx.redis.op.RangeLimitOptions
Use
Redis |
io.vertx.redis.RedisOptions
Use
RedisOptions with the new client API.
This object controls the connection setting to the Redis Server. There is no need to specify most of the settings
since it has built the following sensible defaults:
* `encoding`: `UTF-8` * `host`: `localhost` * `port`: 6379 * `tcpKeepAlive`: true * `tcpNoDelay`: true * `binary`: false However there are two extra properties that have no defaults since they are optional: * `auth` * `select`
The usage of this two extra properties is to setup required authentication and optionally the selection of the active
database at connection time. If you define this extra properties on every connection to Redis server this client
will perform the authentication handshake and database selection, however if you don't do this and call |
io.vertx.redis.op.ScanOptions
Use
Redis |
io.vertx.redis.op.SetOptions
Use
Redis |
io.vertx.redis.op.SortOptions
Use
Redis |
Exceptions and Description |
---|
io.vertx.redis.client.RedisException |
Method and Description |
---|
io.vertx.redis.client.RedisOptions.addEndpoint(String)
see
RedisOptions.setConnectionString(String connectionString) for a better naming |
io.vertx.redis.client.RedisOptions.setEndpoint(String)
see
RedisOptions.setConnectionString(String connectionString) for a better naming |
Copyright © 2020 Eclipse. All rights reserved.