skip to Main Content

How to query nested data in Redis

For the API I'm developing, I'm in the process of saying "goodbye" to Mongo and I'd like to use Redis as my primary database. The authentication of my API is based on HTTP basic auth where user name is essentially…

VIEW QUESTION

Unregistering a RedisGears registration using inline redis-cli command results in "ERR unknown command `RG_UNREGISTER`"

When using redis-cli, I can unregister a RedisGears registration like this: 127.0.0.1:16379> RG.UNREGISTER "0000000000000000000000000000000000000000-4" OK When running this command as an inline redis-cli command, it fails: $ redis-cli "RG_UNREGISTER 0000000000000000000000000000000000000000-6" (error) ERR unknown command `RG_UNREGISTER 0000000000000000000000000000000000000000-6`, with args beginning with:…

VIEW QUESTION
Back To Top
Search