diff options
author | Matthias Radestock <matthias@lshift.net> | 2010-05-03 21:20:14 +0100 |
---|---|---|
committer | Matthias Radestock <matthias@lshift.net> | 2010-05-03 21:20:14 +0100 |
commit | 39f46d22ed36b864a38cafe9b8f18ce5bec313d8 (patch) | |
tree | 126ce89772bbf98b0ca03ed73b0e602333eab1ac /ebin | |
parent | 120be66887e4d116dfc6a5ae1a4f68bb310c269b (diff) | |
download | rabbitmq-server-39f46d22ed36b864a38cafe9b8f18ce5bec313d8.tar.gz |
pluggable queue backendsbug22616
- behaviour and specs for pluggable queue backends
- reworking of the queue code to support pluggability, including
hookups to memory monitoring and file handle management
- interface to existing persister via the new API
All these changes were cherry-picked from the bug21673 branch.
Diffstat (limited to 'ebin')
-rw-r--r-- | ebin/rabbit_app.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in index ad8e3549..bdf407eb 100644 --- a/ebin/rabbit_app.in +++ b/ebin/rabbit_app.in @@ -18,6 +18,7 @@ {ssl_listeners, []}, {ssl_options, []}, {vm_memory_high_watermark, 0.4}, + {backing_queue_module, rabbit_invariable_queue}, {persister_max_wrap_entries, 500}, {persister_hibernate_after, 10000}, {default_user, <<"guest">>}, |