diff options
| -rw-r--r-- | src/rabbit_msg_store.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_msg_store.erl b/src/rabbit_msg_store.erl index ddb53a24db..5f93e4e8a6 100644 --- a/src/rabbit_msg_store.erl +++ b/src/rabbit_msg_store.erl @@ -155,7 +155,7 @@ %% Index: this is a mapping from Guid to #msg_location{}: %% {Guid, RefCount, File, Offset, TotalSize} %% By default, it's in ets, but it's also pluggable. -%% FileSummary: this is an ets table which maps File to #file_summary(): +%% FileSummary: this is an ets table which maps File to #file_summary{}: %% {File, ValidTotalSize, ContiguousTop, Left, Right, %% FileSize, Locked, Readers} %% @@ -169,7 +169,7 @@ %% We need to keep track of which messages are in which files (this is %% the Index); how much useful data is in each file and which files %% are on the left and right of each other. This is the purpose of the -%% FileSummary table. +%% FileSummary ets table. %% %% As messages are removed from files, holes appear in these %% files. The field ValidTotalSize contains the total amount of useful |
