2008年12月10日のブックマーク (1件)

  • ZeroMQ

    Why ZeroMQ? ZeroMQ (also known as ØMQ, 0MQ, or zmq) looks like an embeddable networking library but acts like a concurrency framework. It gives you sockets that carry atomic messages across various transports like in-process, inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fan-out, pub-sub, task distribution, and request-reply. It's fast enough to be the fabric

    makotan
    makotan 2008/12/10
    Getting two applications to talk is always a challenge. They have to agree on what the data looks like. And what it means. They have to agree on how the data is organised into a message.