node-redis-scan
Advanced tools
Comparing version 1.3.5 to 1.3.6
{ | ||
"name": "node-redis-scan", | ||
"version": "1.3.5", | ||
"version": "1.3.6", | ||
"description": "A simple ES6 Redis key scanner for Node", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -20,4 +20,8 @@ # Node Redis key scanner | ||
Instantiate this class with a [Node Redis client](https://github.com/NodeRedis/node_redis) and then perform key space scans! Redis also supports scanning through hashes, sets, and sorted sets with the `HSCAN`, `SSCAN`, and `ZSCAN` commands, respectively. This functionality is available by calling the appropriately named functions listed below. | ||
Instantiate this class with a [Node Redis client](https://github.com/redis/node-redis) (version 3.x) then perform key space scans! | ||
**⚠️ Note:** Node Redis clients of version 4.x or newer are not supported by this library. [At least not yet](https://github.com/GigSalad/node-redis-scan/issues/12). Luckily, if you are using version 4.x you may not need this library. You could likely use a [Node Redis 4.x scan iterator](https://github.com/redis/node-redis#scan-iterator) instead of this library. | ||
Redis supports scanning the entire key space or scanning hashes, sets, and sorted sets with the `HSCAN`, `SSCAN`, and `ZSCAN` commands, respectively. All of this functionality is available by calling the appropriately named functions listed below. | ||
### Table of contents | ||
@@ -24,0 +28,0 @@ |
41071
240