diff options
| author | Matthew Sackman <matthew@lshift.net> | 2009-04-12 12:30:38 +0100 |
|---|---|---|
| committer | Matthew Sackman <matthew@lshift.net> | 2009-04-12 12:30:38 +0100 |
| commit | 383558344a9103b4a250f729cc4380534bc07da8 (patch) | |
| tree | ec7aa79637747257e41b0f8dc4c8d067224c557d /include | |
| parent | d56092143a04fffce12dbd6b93bfcd0fdc4d3cfd (diff) | |
| download | rabbitmq-server-git-383558344a9103b4a250f729cc4380534bc07da8.tar.gz | |
switched mnesia to an ordered_set.
Seems to match performance with bag for startup and without the issues on fanout.
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 27891fd3f8..4f06b8335d 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, {msg_id, queue, is_delivered}). +-record(dq_msg_loc, {msg_id_and_queue, is_delivered}). %%---------------------------------------------------------------------------- |
