Jennifer Hickey
Jennifer Hickey
We've had a request to support the new time command in Spring Data (http://redis.io/commands/time). It doesn't seem to be implemented yet in RedisConnection.
It would be nice to provide a password to RedisClient and have it call auth automatically on connect (ala this custom extension: https://github.com/SpringSource/spring-data-redis/blob/master/src/main/java/org/springframework/data/redis/connection/lettuce/AuthenticatingRedisClient.java)
Running the following test code produced the following error. The same problem occurs with msetnx. ``` @Test public void testMSet() throws RedisException { ConnectionSpec connectionSpec = DefaultConnectionSpec.newSpec("localhost", 6379, 0, null);...