Package | Description |
---|---|
io.vertx.redis |
= Vert.x-redis
:toc: left
Vert.x-redis is redis client to be used with Vert.x.
|
io.vertx.redis.op |
Modifier and Type | Method and Description |
---|---|
RedisTransaction |
RedisTransaction.setBinaryWithOptions(String key,
io.vertx.core.buffer.Buffer value,
SetOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Set the string value of a key
|
RedisClient |
RedisClient.setBinaryWithOptions(String key,
io.vertx.core.buffer.Buffer value,
SetOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler)
Set the string value of a key
|
RedisTransaction |
RedisTransaction.setWithOptions(String key,
String value,
SetOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Set the string value of a key
|
RedisClient |
RedisClient.setWithOptions(String key,
String value,
SetOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Set the string value of a key
|
Modifier and Type | Field and Description |
---|---|
static SetOptions |
SetOptions.NONE |
Modifier and Type | Method and Description |
---|---|
SetOptions |
SetOptions.setEX(long seconds) |
SetOptions |
SetOptions.setNX(boolean unlessExists) |
SetOptions |
SetOptions.setPX(long millis) |
SetOptions |
SetOptions.setXX(boolean onlyIfExists) |
Constructor and Description |
---|
SetOptions(SetOptions obj) |
Copyright © 2018 Eclipse. All rights reserved.