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. javascript - jquery怎么让a标签跳转后保持tab的样式2. javascript - vue中怎么使用原生js插件3. php多任务倒计时求助4. javascript - 小demo:请教怎么做出类似于水滴不断扩张的效果?5. javascript - 请问下面代码中的...是扩展运算符还是操作运算符?这样写是什么意思?6. css - 子元素跑到父元素外面7. css - 如何把一个视图放在左浮动定位的视图的上面?8. css - autoprefixer没有添加web-kit前缀9. python的正则怎么同时匹配两个不同结果?10. javascript - axios请求回来的数据组件无法进行绑定渲染
