Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Update client.js
Browse files Browse the repository at this point in the history
  • Loading branch information
brysgo authored Sep 6, 2019
1 parent 42ac32f commit 3f37066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ redisClient.on("error", function(err) {
redisClient.set("string key", "string val", redis.print);
redisClient.hset("hash key", "hashtest 1", "some value", redis.print);
redisClient.hset(["hash key", "hashtest 2", "some other value"], redis.print);
Array.from({length: 10000}).forEach(function() {
Array.from({length: 10000}).forEach(function(i) {
redisClient.set("key: " + i, "val: " + i, redis.print);
});
redisClient.hkeys("hash key", function (err, replies) {
Expand Down

0 comments on commit 3f37066

Please sign in to comment.