ilp-store-wrapper
v2.0.0
Published
> Synchronous wrapper around ILP store
Readme
ILP Store Wrapper
Synchronous wrapper around ILP store
The constructor takes an ILP store.
const wrappedStore = new StoreWrapper(store).load(key) -> Promise<null>will read a key asynchronously into the cache..get(key) -> valuewill synchronously read from the cache..set(key, value) -> nullwill synchronously write to the cache and queue a write to the store (with order guaranteed)..delete(key) -> nullwill synchronously delete from the cache and queue a delete to the store (with order guaranteed)..setCache(key, value) -> nullwill synchronously write to the cache and NOT queue any write to the store.
