Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 605 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 605 Bytes

Exmq

Exmq - is redis based message queue for ElixirLang.

Usage

First of all you must have runned redis.

After starting redis and exmq set up connection with:

set_up_connection('localhost', 6379)

And you can use it:

push('channel1', {:ok, :test})
push('channel1', {:ok, :test2})
push('channel1', {:ok, :test3})
{:ok, :test3} = pop('channel1')

Contributing

Todo

  1. Add timestamps

  2. Add reverse turn

Author

@0xAX