hope_cache 0.1.2
hope_cache: ^0.1.2 copied to clipboard
Simple and fast caching for Dart/Flutter with TTL support, multiple eviction strategies, and pluggable storage.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add hope_cacheWith Flutter:
$ flutter pub add hope_cacheThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
hope_cache: ^0.1.2Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:hope_cache/cache_entry.dart';
import 'package:hope_cache/cache_manager.dart';
import 'package:hope_cache/cache_store.dart';
import 'package:hope_cache/key_gen.dart';