Command to list all active channels in Redis Pub/Sub
This post provides information about the command to list out all active channels in Redis pub-sub & command to get number of subscribers subscribed to a Redis channel in Redis pub-sub.…
A proper & well organized listing of IT companies
This post provides information about the command to list out all active channels in Redis pub-sub & command to get number of subscribers subscribed to a Redis channel in Redis pub-sub.…
If you are not using Redis in cluster mode or master-slave mode & still getting this error "CLUSTERDOWN Hash slot not served" then you must try below solution. That should fix the issue,Solution: Just…
I came across this issue when I was checking my Redis log file on server. When I looked at the Redis Log File, I wondered after seeing its size. It was about 4GB. When I tried to open that file, I got…
Redis command to get all keys in Redis, Use command - redis-cli KEYS *. This will return all available keys in Redis Data Store. To get key by specific key-name, use command redis-cli KEYS KeyName. To get keys that starts with particular text, use command redis-cli KEYS StartingText*.…