Strongly consistent insert #449
-
Is it possible to have strong consistency guarantees for insert operation on future/sync cache? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi. I am not sure which part of the consistency of
If you are referring to the consistency of the concurrent hash table (1), you already have it as the table is always strongly consistent. If you are referring to the consistency of the cache policy data structures (2), it is eventually consistent with a small number of exceptions. |
Beta Was this translation helpful? Give feedback.
-
Thank you very much! |
Beta Was this translation helpful? Give feedback.
Hi. I am not sure which part of the consistency of
insert
operation you are referring to. But here is a brief explanation of the consistencies of the internal components of the cache:Cache
consists of two major components: (1) the concurrent hash table, and (2) the cache policy data structures.