Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
很多时候,我的队列将保持为空。但是当它填满时,该队列如何通知我的服务器执行 python 脚本?
我可以让 python 脚本每 5 秒进入一次队列,但这很愚蠢。
您应该在队列中有一个消费者,它注册一个回调。然后,消费者将轮询队列并在收到项目时调用回调。
你没有说你是如何访问队列的,但是像胡萝卜这样的库会为你做这件事。