Posted
Filed under 프로그래밍/Python
이건 메뉴얼에도 있는거지만 나중에 찾기 쉽게 그냥 메모해둔다.
꼭 flask가 아니라 필요한부분에 사용하면되겠다.

from werkzeug.contrib.cache import RedisCache


cache = RedisCache(host='127.0.0.1',port=6379,db=4)

cache.set('my-item', 'value',timeout=50)
cache.get('my-item')


아래 flask메뉴얼하고 약간의 차이가 있다.


http://flask-docs-kr.readthedocs.org/ko/latest/en/patterns/caching.html?highlight=cache

http://werkzeug.pocoo.org/docs/0.9/contrib/cache/#werkzeug.contrib.cache.SimpleCache

2014/09/26 16:29 2014/09/26 16:29