As a part of stabilizing the cache API, the following cache methods have been renamed:
- `get_or_insert_with(K, F)` → `get_with(K, F)`
- `get_or_try_insert_with(K, F)` → `try_get_with(K, F)`
Old methods are still available but marked as deprecated. They will be removed in a
future version.
Also `policy` method was added to all caches and `blocking` method was added to
`future::Cache`. They return a `Policy` struct or `BlockingOp` struct
respectively. Some uncommon cache methods were moved to these structs, and old
methods were removed without deprecating.
Please see [105][gh-pull-0105] for the complete list of the affected methods.
Changed
- API stabilization. (Smaller core cache API, shorter names for common methods)
([105][gh-pull-0105])
- Performance related:
- Improve performance of `get_with` and `try_get_with`. ([88][gh-pull-0088])
- Avoid to calculate the same hash twice in `get`, `get_with`, `insert`,
`invalidate`, etc. ([90][gh-pull-0090])
- Update the minimum versions of dependencies:
- crossbeam-channel to v0.5.4. ([100][gh-pull-0100])
- scheduled-thread-pool to v0.2.5. ([103][gh-pull-0103], by
[Milo123459][gh-Milo123459])
- (dev-dependency) skeptic to v0.13.5. ([104][gh-pull-0104])
Added
Experimental Additions
- Add a synchronous cache `moka::dash::Cache`, which uses `dashmap::DashMap` as the
internal storage. ([99][gh-pull-0099])
- Add iterator to `moka::dash::Cache`. ([101][gh-pull-0101])
Please note that the above additions are highly experimental and their APIs will
be frequently changed in next few releases.