stash_objectbox 3.0.0-dev.1 copy "stash_objectbox: ^3.0.0-dev.1" to clipboard
stash_objectbox: ^3.0.0-dev.1 copied to clipboard

outdated

Objectbox storage extension for the stash caching API. Provides support to store caches in the Objectbox database

example/example.dart

import 'dart:io';

import 'package:stash_objectbox/stash_objectbox.dart';

class Task {
  final int id;
  final String title;
  final bool completed;

  Task({required this.id, required this.title, this.completed = false});

  /// Creates a [Task] from json map
  factory Task.fromJson(Map<String, dynamic> json) => Task(
      id: json['id'] as int,
      title: json['title'] as String,
      completed: json['completed'] as bool);

  /// Creates a json map from a [Task]
  Map<String, dynamic> toJson() =>
      <String, dynamic>{'id': id, 'title': title, 'completed': completed};

  @override
  String toString() {
    return 'Task $id: "$title" is ${completed ? "completed" : "not completed"}';
  }
}

void main() async {
  // Temporary path
  final path = Directory.systemTemp.path;

  // Creates a memory based cache with a a capacity of 10
  final cache = newObjectBoxCache(path,
      maxEntries: 10, fromEncodable: (json) => Task.fromJson(json));

  // Adds a task with key 'task1' to the cache
  await cache.put('task1',
      Task(id: 1, title: 'Run stash_objectbox example', completed: true));
  // Retrieves the value from the cache
  final value = await cache.get('task1');

  print(value);
}
2
likes
0
pub points
51%
popularity

Publisher

verified publisherivoleitao.dev

Objectbox storage extension for the stash caching API. Provides support to store caches in the Objectbox database

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

objectbox, path, stash

More

Packages that depend on stash_objectbox