The insert operation mutates the in-memory structure and may cause a flush to disk
when the size exceeds threshold.
The delete operation also mutates the in-memory structure.
This could lead to issues while reading or writing while one of the stores is in an inconsistent state.
To prevent this, all operations that mutate the store should acquire a lock over the store before being processed.
The insert operation mutates the in-memory structure and may cause a flush to disk
when the size exceeds threshold.
The delete operation also mutates the in-memory structure.
This could lead to issues while reading or writing while one of the stores is in an inconsistent state.
To prevent this, all operations that mutate the store should acquire a lock over the store before being processed.