NIF based Erlang bindings for the ZeroMQ messaging library.

Copyright © 2011 Yurii Rashkovskii, Evax Sofware and Michael Truog

Authors: Yurii Rashkovskii (yrashk@gmail.com) [web site: http://rashkovskii.com], Evax Software (contact@evax.fr) [web site: http://www.evax.fr], Michael Truog (mjtruog at gmail dot com) [web site: http://mjtruog.veryspeedy.net].

References

  1. Overview
  2. Downloading
  3. Building
  4. Architecture
  5. License

Overview

The erlzmq2 application provides high-performance NIF based Erlang bindings for the ZeroMQ messaging library.

Downloading

The erlzmq2 source code can be found on GitHub

    $ git clone http://github.com/zeromq/erlzmq2.git

It is also available on Agner:

    $ agner build erlzmq

In order to build erlzmq2 against a specific version of ZeroMQ (not 'v2.1.4'), use this:

    $ ZEROMQ_VERSION=v<VERSION> agner build erlzmq

Building

Build the code
    $ make

If you want to build against a specific version of ZeroMQ (not 'v2.1.4'), use this:

    $ ZEROMQ_VERSION=v<VERSION> make
Build the docs
    $ make docs
Run the test suite
    $ make test
Run the benchmarks (requires python and matplotlib)
    $ make bench

This will run performance tests and output png graphs in the graphs directory.

Please note that to behave properly on your system ZeroMQ might require some tuning.

Architecture

The bindings use Erlang's NIF (native implemented functions) interface to achieve the best performance. One extra OS thread and one pair of inproc sockets by context are used to simulate blocking recv calls without affecting the Erlang virtual machine's responsiveness.

License

The project is released under the MIT license.


Generated by EDoc, May 26 2012, 21:14:33.