This release introduces a new mechanism for speeding up count(*)
queries using cached table counts, stored in a _counts
table and updated by triggers. This mechanism is described in Cached table counts using triggers, and can be enabled using Python API methods or the new enable-counts
CLI command. (#212)
table.enable_counts()
method for enabling these triggers on a specific table.db.enable_counts()
method for enabling triggers on every table in the database. (#213)- New
sqlite-utils enable-counts my.db
command for enabling counts on all or specific tables, see Enabling cached counts. (#214) - New
sqlite-utils triggers
command for listing the triggers defined for a database or specific tables, see Listing triggers. (#218) - New
db.use_counts_table
property which, ifTrue
, causestable.count
to read from the_counts
table. (#215) table.has_counts_triggers
property revealing if a table has been configured with the new_counts
database triggers.db.reset_counts()
method andsqlite-utils reset-counts
command for resetting the values in the_counts
table. (#219)- The previously undocumented
db.escape()
method has been renamed todb.quote()
and is now covered by the documentation: Quoting strings for use in SQL. (#217) - New
table.triggers_dict
anddb.triggers_dict
introspection properties. (#211, #216) sqlite-utils insert
now shows a more useful error message for invalid JSON. (#206)