Method and Description |
---|
io.vertx.redis.client.RedisOptions.addEndpoint(String)
see
RedisOptions.setConnectionString(String connectionString) for a better naming |
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.RedisOptions.setEndpoint(String)
see
RedisOptions.setConnectionString(String connectionString) for a better naming |
Copyright © 2021 Eclipse. All rights reserved.