You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
I am using the following to create the connection.
client = new RedisClient(config.getRedisHost());
async = client.connectAsync();
async.set("test", "123");
async.get("test");
I am not seeing the keys in the Redis. I also used 'async.lpush' after the set, still not seeing it. Is there anything I am missing here that I should be doing? Please help me with this.
The text was updated successfully, but these errors were encountered:
Hi @allas, are you checking that the keys are set with a lettuce connection? Or via redis-cli or something else? If you're using the same async connection you must wait for completion of the futures. The awaitAll(...) method can help.
Hi @allashttps://github.com/allas, are you checking that the keys are
set with a lettuce connection? Or via redis-cli or something else? If
you're using the same async connection you must wait for completion of the
futures. The awaitAll(...) method can help.
Reply to this email directly or view it on GitHubhttps://github.com//issues/29#issuecomment-36702742
.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am using the following to create the connection.
client = new RedisClient(config.getRedisHost());
async = client.connectAsync();
async.set("test", "123");
async.get("test");
I am not seeing the keys in the Redis. I also used 'async.lpush' after the set, still not seeing it. Is there anything I am missing here that I should be doing? Please help me with this.
The text was updated successfully, but these errors were encountered: