我需要在我的项目中使用beanstalked。所以我下载了1.1版本。 我将beanstalkc用于python客户端。 一个简单的生产者 - 消费者模型。
制片:
import beanstalkc
beanstalk = beanstalkc.Connection('localhost')
beanstalk.use('foo')
beanstalk.put('hello')
beanstalk.put('world')
消费者:
import beanstalkc
beanstalk.use('foo')
beanstalk = beanstalkc.Connection('localhost')
job = beanstalk.reserve()
但是保留行动很长时间被阻止。有人遇到过这个问题吗?