summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@lshift.net>2009-04-12 12:30:38 +0100
committerMatthew Sackman <matthew@lshift.net>2009-04-12 12:30:38 +0100
commit383558344a9103b4a250f729cc4380534bc07da8 (patch)
treeec7aa79637747257e41b0f8dc4c8d067224c557d /include
parentd56092143a04fffce12dbd6b93bfcd0fdc4d3cfd (diff)
downloadrabbitmq-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.hrl2
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}).
%%----------------------------------------------------------------------------