indexed_entity_store 1.4.2-dev1 copy "indexed_entity_store: ^1.4.2-dev1" to clipboard
indexed_entity_store: ^1.4.2-dev1 copied to clipboard

A fast, simple, and synchronous entity store for Flutter applications.

Indexed Entity Store #

IndexedEntityStore offers fast, synchronous persistent data storage for Flutter applications.

  • 💨 Fast: Optimized for both data access and development speed.
    • Use hot-reload instead of code generation and writing manual schema migrations.
    • All queries use indices, so data access is always instantaneous.
  • ⚡️ Reactive: Every read from the store is reactive by default, so your application can update whenever the underlying data changes.
  • 🔥 Hot-reload: ....
  • 📖 Simple: Offers a handful of easy-to-use APIs, and strives for a straightforward implementation of only a few hundred lines of codes.

It's first and foremost goal is developer productivity while developing1. Most applications a few thousand or less entities of each types, and if access to these is done via indexed queries, there is no need to make even the simplest data update async. Furthermore no manual mapping from entity to "rows" is needed. Just use toJson/fromJson methods which likely already exists on the typed2.

The library itself is developed in the Berkeley style, meaning that the goal is to make it practially nice to use and also keep the implementation straighforward and small. While this might prevent some nice-to-have features in the best case, it also prevents the worst case meaning that development is slowing down as the code is too entrenched or abandoned and can not be easily migrated.

Because this library uses SQLite synchronously in the same thread, one can easily mix SQL and Dart code with virtually no overhead, which wouldn't be advisable in an async database setup (not least due to the added complexity that stuff could've chagned between statement). This means the developer can write simpler, more reusable queries and keep complex logic in Dart3.

1
likes
0
pub points
58%
popularity

Publisher

verified publisherlunaone.de

A fast, simple, and synchronous entity store for Flutter applications.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

disposable_value_listenable, flutter, sqlite3

More

Packages that depend on indexed_entity_store