On Thursday, November 15, 2012 at 10:49 AM, homer kommrad wrote:
im using beanstalk on production.holdin our message status queueswhen i reach the queye via beanstemc.reserve(60) , it either gives me a job or throws an exception after waitingbut when i use beanstemc.reserve() , i wait for 10-15 minutes and nothing happens. In the javadoc , it says that it "immediately" either gives me a job or gives me an exception.What could cause the problem ?--
You received this message because you are subscribed to the Google Groups "beanstalk-talk" group.
To view this discussion on the web visit https://groups.google.com/d/msg/beanstalk-talk/-/Qiuyvas5Q6gJ.
To post to this group, send email to beansta...@googlegroups.com.
To unsubscribe from this group, send email to beanstalk-tal...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/beanstalk-talk?hl=en.
public Job reserve() throws IOException, BeanstemcException {return reserve(0);}this is the function thats shown at https://github.com/safl/beanstemc/blob/master/src/dk/safl/beanstemc/Beanstemc.javaso when i call reserve , it means i call reserve(0)