You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Async API is gone because it was stupid to have in the first place.
Internally, db results, including cached returns, are returned with yield return x so that users do not have to iterate over entire DB sets when matching. They can simply abort the iteration and skip unnecessary DB reads.
Added pragmas for max performance.
Added pragmas to make read only mode truly read only.
Added/tweaked DB indexes.
Added final preview package of underlying Sqlite which implements prepared statements. As a consequence, rule loading performance has roughly doubled.