您最多选择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