问题描述
我有一个数据库和一个监视它的服务。我想将有关上述数据库的呼叫排队到rq.Queue
:
callback.py
from pymongo import MongoClient
db_client = MongoClient(username='root',password='pass').db.collection
def do_something(db):
while not list(db.find({})):
print('empty db')
print('found something')
但是,我每次尝试做这样的事情
from redis import Redis; from rq import Queue; from allocator import db_client,do_something
Queue(connection=Redis()).enqueue(do,(db_client,)
产生
TypeError: cannot pickle '_thread.lock' object
我尝试过的事情:
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)