My favorites | Sign in
Project Home Downloads Issues Source
Project Information
Members
Featured
Downloads
Links

Peafowl has moved to github : http://github.com/cyberdelia/peafowl

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')
Powered by Google Project Hosting