ivoleitao / stash

Key-value store abstraction with plain and cache driven semantics and a pluggable backend architecture.
MIT License
82 stars 16 forks source link

feat(stash_sqlite): use NativeDatabase.createInBackground factory #68

Closed RomainFranceschini closed 7 months ago

RomainFranceschini commented 7 months ago

Status

READY

Breaking Changes

NO

Description

Use NativeDatabase.createInBackground factory to spawn a long-running isolate to run SQL statements and avoid accessing the database from the main isolate (which can cause blocking IO operations). Fixes #67