選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

14 行
181 B

  1. _store=None
  2. def store():
  3. """
  4. Return the redis datastore
  5. """
  6. import redis
  7. global _store
  8. if not _store:
  9. _store = redis.Redis('localhost', port=6379, db=0)
  10. return _store