jaguar_cache 2.1.2 copy "jaguar_cache: ^2.1.2" to clipboard
jaguar_cache: ^2.1.2 copied to clipboard

Cache layer for Jaguar.

jaguar_cache #

Cache layer for Jaguar

Example #

import 'dart:async';
import 'package:jaguar_cache/jaguar_cache.dart';
import 'package:jaguar_serializer/serializer.dart';

main() async {
  final repo = new JsonRepo();
  final cache = new InMemoryCache(repo);

  // Upsert
  cache.upsert('one', 1, new Duration(seconds: 5));
  print(cache.read('one'));

  // Replace
  cache.replace('one', 2, new Duration(seconds: 5));
  print(cache.read('one'));

  // Expire
  await new Future.delayed(new Duration(seconds: 5));

  try {
    cache.read('one');
  } catch(e) {
    print('Success! $e');
  }

  cache.upsert('one', 1.0, new Duration(seconds: 5));
  cache.upsert('two', 2.0, new Duration(seconds: 5));

  print(cache.readMany(['one', 'two']));
}

Operations #

Upsert #

Sets the given key/value in the cache, overwriting any existing value associated with that key.

  cache.upsert('one', 1, new Duration(seconds: 5));
  print(cache.read('one'));

Read #

Get the content associated with the given key

  print(cache.read('one'));

Read many #

Get the content associated multiple keys at once.

  cache.upsert('one', 1.0, new Duration(seconds: 5));
  cache.upsert('two', 2.0, new Duration(seconds: 5));

  print(cache.readMany(['one', 'two']));

Replace #

Set the given key/value in the cache ONLY IF the key already exists.

  cache.replace('one', 2, new Duration(seconds: 5));
  print(cache.read('one'));

Remove #

Deletes the given key from the cache

cache.remove('one');
0
likes
30
pub points
19%
popularity

Publisher

unverified uploader

Cache layer for Jaguar.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

More

Packages that depend on jaguar_cache