PeafowlPeafowl 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')
30 Day Summary Apr 17 2013 — May 17 2013
|
12 Month Summary May 17 2012 — May 17 2013
|
Copyright
©
2013
Black Duck Software, Inc.
and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a
Creative Commons Attribution 3.0 Unported License
. Ohloh
®
and the Ohloh logo are trademarks of
Black Duck Software, Inc.
in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.