Redis FAQ or: what you learn when idling in #redis

Last update: 2015-06-16

First: this here is the unofficial FAQ, only containing things that come up by users in the IRC channel #redis on Freenode. There's also a more official FAQ. This document is also available in a gist.

X is weird in my instance. Can you help?

Maybe. To better help please give the following info:

Don't spam the channel, upload it to pastebin, as a gist or similar.

I want to use SELECT to seperate my data. Is this a good idea?

Antirez decided select was an anti-pattern a loooong time ago. He won't fully deprecate it, but it doesn't get support in new features such as cluster. (via brycebaril, post on mailing list)

Just use seperate instances or use namespacing (often used: namespace:real-key-name)

I have some data and need to retrieve it by date. How to to that?

Sorted Sets can be useful here. Store some value and use the timestamp as the score. Then use ZRANGEBYSCORE to get it back.

I installed a new version, but redis-cli info server still shows the old one

I have a background in SQL. Now I'm looking into how I can use Redis. Anything I need to consider?

If you're used to SQL, storing data in Redis is more like creating the indexes for your SQL schema (from: brycebaril)

INFO keyspace shows a different number of keys on the slave than on the master

First: check that master and slave are in sync. Do this by checking INFO replication of both master and slave and compare master_repl_offset and slave_repl_offset. Next: Do you have a lot of expires? On initial sync the slave will drop all already expired keys, while they may still be in the master instance (but are gone as soon as you try to fetch them). (by: Moe, also sync not copying all keys)

I want a new version on my Ubuntu machine

You have multiple possibilities to do this.

  1. Take what the Ubuntu repository provides: apt-get install redis-server (this may be a little bit old)
  2. Compile it yourself, see Download, Section "Installation"
  3. Use a PPA (Personal Package Archive), such as the one by chris-lea or rwky

Where do I find the config?

Redis does not have a default path to put the config in. Instead you always have to specify it as a argument on the command line (or in your init script). Most distributions put the config into /etc/redis.conf, /etc/redis/redis.conf, /var/lib/redis/redis.conf or something similar. So look there first if you uncertain.

I can't compile Redis. It fails with something like "error: no such file or directory: '../deps/hiredis/libhiredis.a'"

Try a make distclean first, then again a make. The compile step tries to be smart by only building dependencies once and use the old compile configuration. But it one of the dependencies fails it does not try to compile them again and thus fails. make distclean removes all previous saved state.

Redis' PUBSUB is awesome. Can I use it for X?

Yes, Redis' pubsub mechanism is quite good. People get excited about it. But it might not be the best option for your use case. Pub/Sub is fire-and-forget. If you publish to a channel and no one is subscribed, that message is lost. It's not persisted, saved for later or held back. Just lost. This might or might not be what you want. For more read section 1.1 of matt's Pub/Sub intro.

Ok, I understand Pub/Sub, I really want to use it. Does it work with hundred or thousands of subscriptions/clients?

The mechanism to subscribe to a channel is quite cheap, consider it an constant-time operation. Publish is more expensive, it needs to send to all subscribed clients. For a much more details info read the mailing list thread.

My Cluster is unavailable when a Master goes down. How to fix?

If there is no suitable Replica to failover to, the whole Redis Cluster will go into a fail state and won't serve any more queries. It will become available when all slots are covered again (either by resharding or bringing the old Master back). You can change this behaviour and always serve queries by setting cluster-require-full-coverage to no. See the default config for more.