• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Python使用redis pool的单例实现方式介绍

python 搞代码 4年前 (2022-01-09) 25次浏览 已收录 0个评论

本文实例讲述了Python使用redis pool的一种单例实现方式。分享给大家供大家参考,具体如下:

为适应多个redis实例共享同一个连接池的场景,可以类似于以下单例方式实现:

import redisclass RedisDBConfig:  HOST = '127.0.0.1'  PORT = 6379  DBID = 0def operator_status(func):  '''''get operatoration status  '''  def gen_status(*args, **kwargs):    error, result = None, None    try:      result = func(*args, **kwargs)    except Exception as e:      error = str(e)    return {'result': result, 'error': error}  return gen_statusclass RedisCache(object):  def __init__(self):    if not hasattr(RedisCache, 'pool'):      RedisCache.create_pool()    self._connection = redis.Redis(connection_pool = RedisCache.pool)  @staticmethod  def create_pool():    RedisCache.pool = redis.ConnectionPool(        host = RedisDBConfig.HOST,        port = RedisDBConfig.PORT,        db  = RedisDBConfig.DBID)  @operator_status  def set_data(self, key, value):    '''''set data with (key, value)    '''    return self._connection.set(key, value)  @operator_status  def get_data(self, key):    '''''get da<a>本文来源gao($daima.com搞@代@#码8网^</a>ta by key    '''    return self._connection.get(key)  @operator_status  def del_data(self, key):    '''''delete cache by key    '''    return self._connection.delete(key)if __name__ == '__main__':  print RedisCache().set_data('Testkey', "Simple Test")  print RedisCache().get_data('Testkey')  print RedisCache().del_data('Testkey')  print RedisCache().get_data('Testkey')

更多Python使用redis pool的单例实现方式介绍相关文章请关注搞代码


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Python使用redis pool的单例实现方式介绍
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址