当我在beanstalked中使用'reserve'操作时,它会被阻塞很长一段时间

时间:2014-11-24 08:48:28

标签: python beanstalkd beanstalkc

我需要在我的项目中使用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()

但是保留行动很长时间被阻止。有人遇到过这个问题吗?

0 个答案:

没有答案