python (2) 썸네일형 리스트형 pycharm 환경 변수 적용하기 settings > tools > terminal os.environ['APPS_ENV'] 이렇게 가져올 수 있다 ! python-memcached for cache install $ pip install python-memcached 설정 # settings.py CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', 'LOCATION': '127.0.0.1:11211' } } 사용하기 from django.core.cache import cache # set key = 'key' value = 'value' cache.set(key, value, 3600) # get cache.get(key) 이전 1 다음