seitime-frappe/py/common.py
Rushabh Mehta 0abfaf1180 version 2
2011-09-07 17:27:20 +05:30

13 lines
181 B
Python

_store=None
def store():
"""
Return the redis datastore
"""
import redis
global _store
if not _store:
_store = redis.Redis('localhost', port=6379, db=0)
return _store