我一直在构建一个 Discord 机器人,它会在数据库发生变化时向服务器中的选定通道发送消息,特别是在插入新文档时。我使用 MongoDB 作为数据库,我开始了解 pymongo 中的 collection.watch()。我在 db.py 中编写了 watch() 的代码,如 pymongo 文档中给出的那样。这里的“hackathons”是应用 watch 方法的集合。
def new_hackathon():
try:
resume_token = None
pipeline = [{'$match':{'operationType':'insert'}}]
with hackathons.watch(pipeline) as stream:
for change in stream:
print(change)
resume_token = stream.resume_token
except pymongo.errors.PyMongoError:
if resume_token is None:
logging.error('...')
else:
with hackathons.watch(pipeline, resume_after=resume_token) as stream:
for change in stream:
print(change)
我在另一个文件中调用了 new_hackathon() 函数。
class Channels(commands.Cog):
#class methods
new_hackathon()
def setup(bot):
bot.add_cog(Channels(bot))
对 new_hackathon() 函数的调用不会让 cog 加载,因此机器人没有给出响应。如果未调用该函数,则机器人可以完美运行。