From a674362b8c878f8fffbdba0a06487bb1e25782ec Mon Sep 17 00:00:00 2001 From: Sudip Bose Date: Thu, 20 Jun 2024 21:22:29 +0530 Subject: [PATCH] Update: Feature list updated --- docs/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/README.md b/docs/README.md index 2f0ce26..dbc495c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -12,12 +12,13 @@ Author: Sudip Bose([sbose007ime.work@gmail.com](mailto:sbose007ime.work@gmail.co ## 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.