
redis - ERR CROSSSLOT Keys in request don't hash to the same slot ...
Feb 6, 2025 · Redis Cluster implements all the single key commands available in the non-distributed version of Redis. Commands performing complex multi-key operations like Set type unions or …
How do I run Redis on Windows? - Stack Overflow
Jun 25, 2011 · How do I run Redis on Windows? The Redis download page just seems to offer *nix options. Can I run Redis natively on Windows?
How to create own database in redis? - Stack Overflow
Feb 25, 2016 · Redis database is not an equivalent of database names in DBMS like mysql. It is a way to create isolation and namespacing for the keys, and only provides index based naming, not custom …
Redis: Show database size/size for keys - Stack Overflow
Redis' INFO command just shows me the total size and the number of keys per database which doesn't give me much insight... So any tools/ideas that give me more information when monitoring the redis …
c# - Start using Redis with ASP.NET - Stack Overflow
Feb 15, 2011 · How do I start using Redis database with ASP.NET? What I should install and what I should download? I'm using Visual Studio 2008 with C#.
Get Redis keys and values at command prompt - Stack Overflow
Jun 3, 2020 · I have a very small data saved in Redis and the following is working as expected that will allow me to download all keys. redis-cli keys * Is there any way to get the keys+values *?
Redis command to get all available keys? - Stack Overflow
Mar 9, 2011 · Is there a Redis command for fetching all keys in the database? I have seen some python-redis libraries fetching them. But was wondering if it is possible from redis-client.
Redis raises "NOAUTH Authentication required" error but there is no ...
I'm running Redis with Docker and there is an authentication password with the REDIS_PASSWORD env variable. After connecting to the container with docker exec command, connect to redis CLI by …
nosql - Redis availability and CAP theorem - Stack Overflow
Dec 28, 2019 · In CAP theorem, Redis is specified as a database which lacks availability (which has partition tolerance and consistency). But there are many places where Redis is considered as a high …
How to connect to remote Redis server? - Stack Overflow
Nov 18, 2016 · I am able to write into Redis from Scala. However I want to connect to remote Redis via terminal using redis-server or something similar in order to make several call of hget, get, etc.