81828384858687
* values as UTF-8 strings. * * @return A new connection. */ public RedisConnection<String, String> connect() { return connect(new Utf8StringCodec()); }
91929394959697
* keys and values as UTF-8 strings. * * @return A new connection. */ public RedisPubSubConnection<String, String> connectPubSub() { return connectPubSub(new Utf8StringCodec()); }
89909192939495
* keys and values as UTF-8 strings. * * @return A new connection. */ public RedisConnection<String, String> connect() { return connect(new Utf8StringCodec()); }
99100101102103104105
* keys and values as UTF-8 strings. * * @return A new connection. */ public RedisAsyncConnection<String, String> connectAsync() { return connectAsync(new Utf8StringCodec()); }
109110111112113114115
85868788899091
9596979899100101
105106107108109110111