node-redis-scan
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "node-redis-scan", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A simple ES6 Redis key scanner for Node", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -19,3 +19,3 @@ # Node Redis key scanner | ||
The `scan()` method provides the easiest way to scan your key space with a single callback that will be passed all matching keys. Depending on the size of your keyspace (millions of keys and beyond) this process might take many seconds or longer. | ||
The `scan()` method provides the easiest way to scan your keyspace with a single callback that will be passed all matching keys. Depending on the size of your keyspace (millions of keys and beyond) this process might take many seconds or longer. | ||
@@ -38,3 +38,3 @@ **Parameters** | ||
scanner.scan('some-pattern*', function(err, matchingKeys) { | ||
scanner.scan('some-pattern*', (err, matchingKeys) => { | ||
if (err) throw(err); | ||
@@ -41,0 +41,0 @@ |
79398