temp_cache 0.0.2-nullsafety.0 temp_cache: ^0.0.2-nullsafety.0 copied to clipboard
A package which provides functionality to store objects inside a temporary cache inside memory
temp_cache #
A package which provides functionality to store objects inside a temporary cache within memory
Getting Started #
Store objects:
var cache = Cache<TestItem>();
final item1 = TestItem('1');
final item2 = TestItem('2');
final item3 = TestItem('3');
cache.put(item1.id, item1);
cache.put(item2.id, item2);
cache.put(item3.id, item3);
// or
final List<TestItem> items = [item1, item2, item3];
cache.putMany(items, (item) => item.id);
Get objects:
cache.get('1')
// or
cache.getAll()