Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anywhichway/cachestore
A standalone memory cache or wrapper for storage supporting localStore, blockstore, Redis or similar APIs
https://github.com/anywhichway/cachestore
Last synced: about 4 hours ago
JSON representation
A standalone memory cache or wrapper for storage supporting localStore, blockstore, Redis or similar APIs
- Host: GitHub
- URL: https://github.com/anywhichway/cachestore
- Owner: anywhichway
- License: mit
- Created: 2017-07-01T10:28:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-09T07:45:21.000Z (over 7 years ago)
- Last Synced: 2024-11-12T23:37:45.081Z (2 days ago)
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cachestore
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/5d0b3507599946679d1e37302facb607)](https://www.codacy.com/app/syblackwell/cachestore?utm_source=github.com&utm_medium=referral&utm_content=anywhichway/cachestore&utm_campaign=Badge_Grade)
A standalone memory cache and wrapper for storage engines supporting the localStore, Redis or similar APIs
# installation
npm install cachestore
# usage
`new CacheStore()`
`new CacheStore(new BlockStore("./db",true,"utf8"))` // reads of over 200,000 rec/sec have been clocked with this server side combination
Note, when using `get` CacheStore may return either `null` or `undefined` if the record doe snot exist, depending on what the underlying storage provider returns.
# Release History (reverse chronological order)
v0.0.9 2017-07-09 Minor code style improvements. Added `key(index)` relaying to underliyng providers.
v0.0.8 2017-07-08 Added internal caching of key list, substantially imporving speed for large caches.
v0.0.7 2017-07-08 Added `clear` and `key(number)` methods for compatibiity with localStorage API and `put(data,id)` for other APIs, even when just using CacheStore as an in memory primary store. Also corrected a cache update issue impacting some object types.
v0.0.6 2017-07-05 Optimized to reduce property accesses.
v0.0.5 2017-07-04 Fixed count request forwarding to underlying store.
v0.0.4 2017-07-04 Codacy driven style improvements. Added unit tests.
v0.0.3 2017-07-02 Improved delegation code
v0.0.2 2017-07-01 Fixed issues related to compatibility with localStorage API
v0.0.1 2017-07-01 First public release (Still needs work an LRU scavenging)
# License
MIT