1

I have installed redis on my OS X, and trying to set and get some values in Redis from Python 3.5 client. I have the Redis server on (through command redis-server) and the redis-client on as well (opened through the command redis-cli). This is what I am trying on Python:

import redis
r = redis.StrictRedis()
r.set("foo", "bar")
r.get("foo")

This prints bar as expected. However, if I go to my redis-client prompt and try get foo, it returns nil. In the same way, if I set a value in the redis-client itself, like set boo too, calling get boo in the client returns too as expected, however, in my Python client if I run r.get(boo), I get None.

Funny thing is, they are synced between their own instances. So if I open another Python command prompt and type r.get("foo"), it returns bar. In the same way, if I open another redis-cli instance and type get boo, I get too. It is only that the values between Python client and Redis client are not syncing. I even tried to enforce a bgsave from Python client after setting the value there, and it did trigger a save in the window where redis-server is running, but the values do not reflect in the redis-cli window even after that.

They were working perfectly fine until some days back, this has started happening sometime recently.

Any idea how to fix this?

SexyBeast
  • 7,913
  • 28
  • 108
  • 196

1 Answers1

1

It seems to me that you are accessing (setting/getting values) through different dbs in your redis-cli and your redis-py instance. redis servers can have multiple key-value stores (or "tables") completely isolated from one another. These are referred throughout the documentation as db, and are uniquely identified by integers.

If you are instancing redis-py exactly as in your code snippet, with:

import redis
r = redis.StrictRedis()

Then you are using the constructor's default value for db, which is 0. (See documentation)

If the values differ between the Python implementation and redis-cli, then most likely your command line client is running on a different dbthan 0. You can check which db you are working on with the command CLIENT LIST, which will return your current database id.

To switch to the same database as the Python implementation, just run on your redis-cli:

SELECT 0

(See documentation)

Or, alternatively, you can call your redis-py constructor with the desired db parameter:

r = redis.StrictRedis(db=3) # 3 is an example value for your redis-cli's working db
felipecgonc
  • 548
  • 3
  • 10
  • Thanks. I instantiated it with `db` value as 3 in Python, and set it to so in Redis as well: `SELECT 3`. Output: `127.0.0.1:6379[3]> get foo (nil)` – SexyBeast Nov 21 '18 at 17:37
  • @SexyBeast your `redis-py` database value was definitely set to 0, whereas you don't know which database your `redis-cli` was using, so you can't expect to be able to _get_ the same value with 100% certainty. Try running `SELECT 0` and then `GET foo` in your `redis-cli` – felipecgonc Nov 21 '18 at 18:17
  • That's what I said, I tried setting it to 3 in both, then ran the commands. Still not reflecting.. – SexyBeast Nov 21 '18 at 18:20
  • @SexyBeast but did you also run `SET foo bar` (in any one of the clients) after setting both databases to 3? – felipecgonc Nov 21 '18 at 18:24
  • Yes. Did that. And still not reflecting! :( – SexyBeast Nov 21 '18 at 18:26
  • Please try FastoRedis, it will be more simple to find issue which you have. – Topilski Alexandr Nov 25 '18 at 07:01