I'm trying to pass data from C to python. I've hit a brick wall doing it with beanstalk. My last option is sockets.
Are they any fast queue daemons around which have client libraries for both C and python?
Edit:
Operating System: Ubuntu Solved: Check comment by YossarianEdit2:
libbeanstalkclient, the C c开发者_Python百科lient for beanstalk is spewing errors like these -> link Solved: Check comment by YossarianYou aren't linking against libsbeanstalkclient. try something like gcc -lbeanstalkclient when compiling (add the -l... parameter)
(this isn't answer on the question, but solution of questioner's problem)
精彩评论