kaykay-dv / pocketsearch

A simple full-text search library for Python using SQLite and its FTS5 extension
https://pocketsearch.readthedocs.io/en/latest/
MIT License
1 stars 0 forks source link

Allow manual commits using insert, updates and deletes #3

Closed kaykay-dv closed 1 year ago

kaykay-dv commented 1 year ago

Currently, whenever insert/update/delete is invoked the results are immediately written to the database by performing a commit right after the query. There may be scenarios where we want to control this manually, however there is no mechanism in place for this right now.