diff options
| author | Matthew Sackman <matthew@lshift.net> | 2009-04-11 23:14:59 +0100 |
|---|---|---|
| committer | Matthew Sackman <matthew@lshift.net> | 2009-04-11 23:14:59 +0100 |
| commit | 9d4b466cd633593bb0938122d71544c024750f5d (patch) | |
| tree | eaad030f599262899f4dcddeaf9a7f34ca016015 /include | |
| parent | b5d282cc9ac3a734331f86f2a9b9511c0c5a3c06 (diff) | |
| download | rabbitmq-server-git-9d4b466cd633593bb0938122d71544c024750f5d.tar.gz | |
changed the mnesia table to be a bag of MsgId -> {Q, Delivered}
This makes startup MUCH faster, but delivery could be fractionally slower.
Diffstat (limited to 'include')
| -rw-r--r-- | include/rabbit.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 88596a4343..27891fd3f8 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -64,7 +64,7 @@ -record(basic_message, {exchange_name, routing_key, content, persistent_key}). --record(dq_msg_loc, {queue_and_msg_id, is_delivered}). +-record(dq_msg_loc, {msg_id, queue, is_delivered}). %%---------------------------------------------------------------------------- |
