본문 바로가기
Python/Django

[Django] Caches, Redis

by 혀나Lee 2017. 5. 24.

Django에서 redis에 접속하기 위한 방법.


settings.py 에 CACHES 를 추가한다.


CACHES = {

'default': {

'BACKEND': 'django_redis.cache.RedisCache',

'LOCATION': 'redis://<redis_ip>:6379/0',

'OPTIONS': {

...

}

}

}


실제 사용 방법


from django.core.cache import cache


print(cache.get('KEY'))


댓글