Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manpages/fubbit
proxying rabbitmq adequately inside an erlang cluster for fun and profit
https://github.com/manpages/fubbit
Last synced: 24 days ago
JSON representation
proxying rabbitmq adequately inside an erlang cluster for fun and profit
- Host: GitHub
- URL: https://github.com/manpages/fubbit
- Owner: manpages
- Created: 2012-12-02T07:01:27.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2012-12-22T16:11:36.000Z (almost 12 years ago)
- Last Synced: 2023-03-12T06:04:25.221Z (over 1 year ago)
- Language: Erlang
- Size: 434 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
fubbit
======proxying rabbitmq adequately inside an erlang cluster for fun and profit
Usage
---I have started fubbit to get a handy wrapper around amqp_client.
This far it provides API for connecting to rabbitmq and wraps
all the tasks you can do with amqp_clent automatically detecting
whether the task should be run asynchronously (amqp\_cast) or syncronously
(amqp\_call).The main point of that library is replacing records-based API with
proplist-based API.Upcoming features: good subscription proxying.
Documentation
---So far it's undocumented, see what fubbit_connection exports for insight.
But when the wrapper is finished, I'll push some docs. (Hopefully though
after the library is finished, it will be so intuitive in usage that docs
won't be needed ;P)Deployment
---Because RabbitMQ deployment is still fucked up and I don't want to use
rebarized versions cause those are sometimes out of date/hotfix intolerant,
fubbit isn't rebar-compatible. To deploy that library do the following:```
$ wget https://raw.github.com/manpages/fubbit-deploy/master/get-fubbit.sh
$ wget https://raw.github.com/manpages/fubbit-deploy/master/append.txt
$ cat append.txt >> Makefile
```Now you have make recipe to install and uninstall fubbit in ``deps``
directory. Have fun and consider askind vmware to rebarize their
stuff. :)