#caching
Read more stories on Hashnode
Articles with this tag
https://github.com/microsoftarchive/redis/releases msi 다운로드 후 인스톨 (안 하면 에러남) cmd pip install django-redis settings.py CACHES = { "default": { ...
캐싱 복잡한 계산의 결과를 저장해둬서 다음에 반복하지 않게끔 저장 장소는 데이터베이스, 파일 시스템, 메모리 - 각각 성능이 다름 설정에서 지정 - BACKEND와 LOCATION 메모리 저장 캐시 Memcached 데이터베이스 접근 횟수를 줄임 메모리에...