Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/auser/squirrel

A super lightweight queuing library in erlang.
https://github.com/auser/squirrel

Last synced: about 2 months ago
JSON representation

A super lightweight queuing library in erlang.

Awesome Lists containing this project

README

        

Squirrel
---

A lightweight queuing library in erlang.

make
erl -pa ./ebin/ -eval 'application:start(squirrel)'

To demonstrate functionality:

squirrel:subscribe(ari, fun(Msg) -> io:format("Msg: ~p~n", [Msg]) end).
squirrel:publish(ari, {hello, dog}).

Features
----------

Limited. This is only a lightweight queue with very little functionality. If you need something more, I highly suggest RabbitMQ.