Sabtu, 30 November 2013
Minggu, 08 Juli 2012
An Introduction To PZQ
PZQ is a persistent store daemon by Mikko Koppanen which uses the
ZeroMQ messaging socket library (version 2) for communication and Kyoto
Cabinet for disc and in memory data storage. Using ZeroMQ makes the
service almost totally language independent - it’s accessible by
anything that has ZeroMQ bindings (though we’ll use PHP in the examples,
and the client library supplied along with PZQ).
Following the ZeroMQ and Unix philosophy of doing few things, but
doing them well, PZQ is designed to act as a simple store-and-forward
device, with the following sorts of use cases as the main objective,
each of which is discussed below:
- Provide a replacement for ZeroMQ SWAP
- Perform as an asynchronous job queue
https://github.com/mkoppanen/pzq/wiki/An-Introduction-To-PZQ (Read More..)
Sabtu, 07 April 2012
zmqc : zeromq commandline client
zmqc is a small but powerful command-line interface to ØMQ. It allows you to create a socket of a given type, bind or connect it to multiple addresses, set options on it, and receive or send messages over it using standard I/O, in the shell or in scripts. It's useful for debugging and experimenting with most possible network topologies.
(Read More..)