Fixed
- Prevent timing issues in writes that cause inconsistencies between the cache's
internal data structures ([348][gh-pull-0348]):
- One way to trigger the issue is that insert the same key twice quickly, once
when the cache is full and a second time when there is a room in the cache.
- When it occurs, the cache will not return the value inserted in the second
call (which is wrong), and the `entry_count` method will keep returning a non
zero value after calling the `invalidate_all` method (which is also wrong).
- Now the last access time of a cached entry is updated immediately after the entry
is read ([363][gh-pull-0363]):
- When the time-to-idle of a cache is set, the last access time of a cached entry
is used to determine if the entry has been expired.
- Before this fix, the access time was updated (to the time when it was read)
when pending tasks were processed. This delay caused issue that some entries
become temporarily unavailable for reads even though they have been accessed
recently. And then they will become available again after the pending tasks are
processed.
- Now the last access time is updated immediately after the entry is read. The
entry will remain valid until the time-to-idle has elapsed.
Note that both of [348][gh-pull-0348] and [363][gh-pull-0363] were already present
in `v0.11.x` and older versions. However they were less likely to occur because they
had background threads to periodically process pending tasks. So there were much
shorter time windows for these issues to occur.
Changed
- Updated the Rust edition from 2018 to 2021. ([339][gh-pull-0339], by
[nyurik][gh-nyurik])
- The MSRV remains at Rust 1.65.
- Changed to use inline format arguments throughout the code, including examples.
([340][gh-pull-0340], by [nyurik][gh-nyurik])
Added
- Added an example for cascading drop triggered by eviction ([350][gh-pull-0350], by
[peter-scholtens][gh-peter-scholtens])