python redis 多进程使用
问题描述
class RedisClient(object): def __init__(self):pool = redis.ConnectionPool(host=’127.0.0.1’, port=6379)self.client = redis.StrictRedis(connection_pool=pool)
根据文档写了一个带连接池的redis client,然后生成一个实例全局使用。将一个实例,在多线程中共用测试过正常。但是多进程情况,测试失败
class ProcessRdeisTest(Process): def __init__(self,client):self._client = client
这样写,在执行start时,会报错,无法序列化之类。改为:
class ProcessRdeisTest(Process): def __init__(self):pass def run(self):self._client = RedisClient()while Ture: dosomething()
这样倒是能运行起来,不过这种连接方式正确吗?是否有更好的办法实现?
在主线程中 直接process1 = ProcessRdeisTest(’p1’) process1.start() 这种方式调用
问题解答
回答1:楼主,python redis有自己的连接池:
import redisimport threadingclass RedisPool(object): __mutex = threading.Lock() __remote = {} def __new__(cls, host, passwd, port, db):with RedisPool.__mutex: redis_key = '%s:%s:%s' % (host, port, db) redis_obj = RedisPool.__remote.get(redis_key) if redis_obj is None:redis_obj = RedisPool.__remote[redis_key] = RedisPool.new_redis_pool(host, passwd, port, db)return redis.Redis(connection_pool=redis_obj) def __init__(self, host, passwd, port, db):pass @staticmethod def new_redis_pool(host, passwd, port, db):redis_obj = redis.ConnectionPool(host=host, password=passwd, port=port, db=db, socket_timeout=3, max_connections=10) # max_connection default 2**31return redis_obj
相关文章:
1. css3 - css字体样式加填充色而不是背景色2. 请求一个接口,如何获取执行到的mysql,3. javascript - jQuery中live事件在移动微信端下没有效果;代码如下4. javascript - await 后面的Promise对象的回调方法在哪里写5. 最新版的phpstudy的mysql版本只是5.5,有没有5.6或者5.7版本的集成版呀?6. node.js - vue express 前后端分离 登录验证 与 权限控制问题7. html - 谁能推荐一个类似apple官网的模板,用来展示产品的?8. mysql优化 - mysql EXPLAIN之后怎么看结果进行优化 ?9. javascript - 微信 H5 授权 返回键10. html5 - 新手提问:为什么form表单的post请求 路由处理不了