Reputation: 1079
I try to use rabbit's plugin: rabbitmq-message-deduplication.
One of mandatory parameters is x-cache-size
, but I don't understand what unit of this value.
Can someone explain it?
Thank you.
Upvotes: 0
Views: 768
Reputation: 9657
x-cache-size
is the maximum limit of the number of entries in the cache. It is used here and corresponds to the mnesia
table property size
.
If you set x-cache-size
to 100
, then there will never be more than 100
items cached.
Upvotes: 2