cached_value 0.2.0 copy "cached_value: ^0.2.0" to clipboard
cached_value: ^0.2.0 copied to clipboard

A simple way to cache values that result from rather expensive operations.

example/example.dart

import 'package:cached_value/cached_value.dart';

int factorial(int n) {
  if (n < 0) throw ('Negative numbers are not allowed.');
  return n <= 1 ? 1 : n * factorial(n - 1);
}

void main() {
  withDependency();
  withTimeToLive();
}

void withDependency() {
  print("with dependency");

  int originalValue = 1;
  final factorialCache = CachedValue(
    () => factorial(originalValue),
  ).withDependency(
    () => originalValue,
  );

  print(factorialCache.value); // 1

  print(factorialCache.value); // 1 - not recomputes

  originalValue = 6;

  print(factorialCache.value); // 720
}

void withTimeToLive() async {
  print("with TTL:");

  int originalValue = 1;
  final factorialCache = CachedValue(
    () => factorial(originalValue),
  ).withTimeToLive(
    lifetime: Duration(seconds: 3),
  );

  originalValue = 6;

  print(factorialCache.value); // 1

  await Future.delayed(Duration(seconds: 3));

  print(factorialCache.value); // 720
}
13
likes
130
pub points
60%
popularity

Publisher

verified publisherblue-fire.xyz

A simple way to cache values that result from rather expensive operations.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

collection, meta

More

Packages that depend on cached_value