Tagged Questions

2
votes
4answers
1k views

Problems on select module on Python 2.5

I have an application in Python 2.5 that listens to a beanstalk queue. It works fine on all machines I tested so far, except from my newly acquired MacBook Pro. On that computer, when I try to run ...
1
vote
1answer
119 views

Beanstalkc Timeout Question

I am using beanstalkc in Python for a queuing process for a program which has to parse a list of URLs. Hence I am using timeout in beanstalk for avoiding huge time consumption by any URL. But even ...
1
vote
1answer
147 views

Beanstalkc Noob question

I have a function named "spider" which takes "seed" as an argument "seed" is basically the name of the url I send to spider function. Now my question is how do I use beanstalkc in python to queue the ...
1
vote
3answers
254 views

BeanStalkd on Solaris doesnt return anything when called from the python library

i am using Solaris 10 OS(x86). i installed beanstalkd and it starts fine by using command "beanstalkd -d -l hostip -p 11300". i have Python 2.4.4 on my system i installed YAML and beanstalkc python ...
0
votes
3answers
281 views

Adding authentication to beanstalkd from Python (or any UNIX) client

So what I like about beanstalkd: small, lightweight, has priorities for messages, has a great set of clients, easy to use. What I dislike about beanstalkd: the lack of authentication menaing if you ...