-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,12 +12,13 @@ Author: Sudip Bose([[email protected]](mailto:[email protected] | |
## Features | ||
- [x] Trivial opeations of a cache i.e. `put(key, value)`, `get(key)`, `remove(key)`. | ||
- [x] All cache operations are atomic. | ||
- [x] Efficient cache replacement algotithm(s). | ||
- [x] Efficient cache replacement algotithm. | ||
- [ ] Support multiple eviction policies. | ||
- [x] Time-To-Live (TTL) for cache entries. | ||
- [x] Support heterogeneous data types. | ||
- [x] Support heterogeneous data types. | ||
- [x] Cache resizing and dynamic capacity management. | ||
- [ ] Users can create a transient snapshot to get a consistent view of data. | ||
- [ ] Automatic data compression to improve memory usage. | ||
- [ ] Users can create a transient snapshot to get a consistent view of data. | ||
- [ ] Data is stored sorted by key to provide an ordered mapping service. | ||
- [ ] Users can provide a custom comparison function to override the sort order. | ||
|
||
|