- evalBuffer
- evalshaBuffer
- hscanBuffer
- hvalsBuffer
- lindexBuffer
- linsertBuffer
- lrangeBuffer
- lsetBuffer
- psubscribeBuffer
- publishBuffer
- punsubscribeBuffer
- scanBuffer
- sdiffBuffer
- sdiffstoreBuffer
- sinterBuffer
- sinterstoreBuffer
- smembersBuffer
- spopBuffer
- srandmemberBuffer
- sremBuffer
- sscanBuffer
- subscribeBuffer
- sunionBuffer
- sunionstoreBuffer
- unsubscribeBuffer
- xaddBuffer
- xrangeBuffer
- xreadBuffer
- xrevrangeBuffer
- zcardBuffer
- zincrbyBuffer
- zinterstoreBuffer
- zpopmaxBuffer
- zpopminBuffer
- zrangeBuffer
- zrangebyscoreBuffer
- zrankBuffer
- zremrangebyrankBuffer
- zremrangebyscoreBuffer
- zrevrangeBuffer
- zrevrangebyscoreBuffer
- zrevrankBuffer
- zscanBuffer
- zscoreBuffer
redis | why it doesn't make sense to emulate |
---|---|
debug | This command is intended to aid in debugging redis |
dump | Doesn't make sense to implement the internal data format used by RDB |
hello | THe protocols this command is switching between (RESP2, RESP3, Redis 6) aren't in use |
latency | ioredis-mock isn't operating over the network so there is no latency to monitor |
migrate | This command actually executes a DUMP + DEL on the source instance, and a RESTORE in the target. Since DUMP and RESTORE won't be implemented it includes MIGRATE. |
module | It's unlikely that we'll be able to run Redis Modules in a JS VM |
pfdebug | This command is intended to aid in debugging redis |
restore | The RDB specific format used for restores would be a massive undertaking to implement with very little gain. |
slowlog | Useful when you're on redis, not so much when on ioredis-mock |