My favorites | Sign in
Project Logo
             
Links:
Blogs:
Feeds:
People details
Project owners:
  timothee.peignier

Peafowl

Peafowl is a powerful but simple messaging server that enables reliable distributed queuing with an absolutely minimal overhead by using memcache protocol for maximum cross-platform compatibility.

Synopsis

 # Start the Peafowl server as a daemonized process:
 >>> peafowl -H 192.168.1.1 -d

 # Put messages onto a queue:
 >>> from memcache import Client
 >>> peafowl = Client(['192.168.1.1:21122']) 
 >>> peafowl.set('my_queue', 12345)

 # Get messages from the queue:
 >>> from memcache import Client
 >>> peafowl = Client(['192.168.1.1:21122'])
 >>> while True:
 >>>     print peafowl.get('my_queue')








Hosted by Google Code