简体   繁体   中英

How to connect to redis in Django?

CACHES = {
    "default": {
        "BACKEND": "django_redis.cache.RedisCache",
        "LOCATION": "redis://127.0.0.1:6379/1",
        "OPTIONS": {
            "CLIENT_CLASS": "django_redis.client.DefaultClient",
        }
    }
}

I am trying to connect to redis to save my object in it, but it gives me this error when i try to connect

Error 10061 connecting to 127.0.0.1:6379. No connection could be made because the target machine actively refused it

How does it work, what should i give in location and i am on a proxy from my company. Need some detailed explanation on location.

First start the redis server. Your OS will provide a mechanism to do that, eg on some Linuxes you could use systemctl start redis , or /etc/init.d/redis start or similar. Or you could just start it directly with:

$ redis-server

which will run it as a foreground process.

Then try running the redis-cli ping command. Receiving a PONG response indicates that redis is in fact up and running on your local machine:

$ redis-cli ping
PONG

Once you have that working try Django again.

if your redis is password protected, you should have a config like this:

CACHES.update({
    "redis": {
        "BACKEND": "redis_cache.cache.RedisCache",
        "LOCATION": "redis://127.0.0.1:6379/1",
        "OPTIONS": {
             "PASSWORD": "XXXXXXXXXXX",
             "CLIENT_CLASS": "redis_cache.client.DefaultClient",
        },
    },
})

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM