/quiver_cache

Caching objects in memory and elsewhere

Primary LanguageDartApache License 2.0Apache-2.0

DEPRECATED

See https://pub.dev/packages/quiver instead!

Quiver Cache

A semi-persistent cache with map semantics.

Build Status Coverage Status

Documentation

API Docs

Cache is a semi-persistent, asynchronously accessed, mapping of keys to values. Caches are similar to Maps, except that the cache implementation might store values in a remote system, so all operations are asynchronous, and caches might have eviction policies.

MapCache is a Cache implementation backed by a Map.