t_cache 0.0.24 copy "t_cache: ^0.0.24" to clipboard
t_cache: ^0.0.24 copied to clipboard

Efficiently store and retrieve data with TTL, LRU eviction.

tCache #

Efficiently store and retrieve data with TTL, LRU eviction.

Usage Example:

import 'package:cache_manager/cache_manager.dart';

void main() {
  final cache = CacheManager();

  // Setting a cache item
  await cache.setItem('key1', 'value1', ttl: Duration(minutes: 15));

  // Getting a cache item
  String value = cache.getItem('key1');
  print(value);  // Outputs: 'value1'

  // Removing a cache item
  await cache.removeItem('key1');
}
1
likes
140
points
565
downloads

Publisher

unverified uploader

Weekly Downloads

Efficiently store and retrieve data with TTL, LRU eviction.

Repository (GitHub)

Documentation

API reference

License

ISC (license)

Dependencies

flutter, t_helpers, tlogger

More

Packages that depend on t_cache