From 0b8a10ad66030ae820718da0db9f58dc18737696 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 18 Oct 2022 13:54:27 +1100 Subject: [PATCH] fix: improve markAllAsRead performances - make an index on unread+convoId - make the message update trigger only run when the body changed --- ts/data/data.ts | 6 +++++- ts/node/database_utility.ts | 2 +- ts/node/migration/sessionMigrations.ts | 23 +++++++++++++++++++++++ 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/ts/data/data.ts b/ts/data/data.ts index 82017155e..8374850c4 100644 --- a/ts/data/data.ts +++ b/ts/data/data.ts @@ -494,12 +494,16 @@ async function getUnreadByConversation(conversationId: string): Promise> { + // tslint:disable-next-line: no-console + console.time('markAllAsReadByConversationNoExpiration'); const messagesIds = await channels.markAllAsReadByConversationNoExpiration( conversationId, returnMessagesUpdated ); + // tslint:disable-next-line: no-console + console.timeEnd('markAllAsReadByConversationNoExpiration'); return messagesIds; } diff --git a/ts/node/database_utility.ts b/ts/node/database_utility.ts index 7a77eca44..17039750e 100644 --- a/ts/node/database_utility.ts +++ b/ts/node/database_utility.ts @@ -264,7 +264,7 @@ export function rebuildFtsTable(db: BetterSqlite3.Database) { CREATE TRIGGER messages_on_delete AFTER DELETE ON ${MESSAGES_TABLE} BEGIN DELETE FROM ${MESSAGES_FTS_TABLE} WHERE id = old.id; END; - CREATE TRIGGER messages_on_update AFTER UPDATE ON ${MESSAGES_TABLE} BEGIN + CREATE TRIGGER messages_on_update AFTER UPDATE ON ${MESSAGES_TABLE} WHEN new.body <> old.body BEGIN DELETE FROM ${MESSAGES_FTS_TABLE} WHERE id = old.id; INSERT INTO ${MESSAGES_FTS_TABLE}( id, diff --git a/ts/node/migration/sessionMigrations.ts b/ts/node/migration/sessionMigrations.ts index f6574f141..8c2ed8b40 100644 --- a/ts/node/migration/sessionMigrations.ts +++ b/ts/node/migration/sessionMigrations.ts @@ -78,6 +78,7 @@ const LOKI_SCHEMA_VERSIONS = [ updateToSessionSchemaVersion26, updateToSessionSchemaVersion27, updateToSessionSchemaVersion28, + updateToSessionSchemaVersion29, ]; function updateToSessionSchemaVersion1(currentVersion: number, db: BetterSqlite3.Database) { @@ -1181,6 +1182,28 @@ function updateToSessionSchemaVersion28(currentVersion: number, db: BetterSqlite console.log(`updateToSessionSchemaVersion${targetVersion}: success!`); } +function updateToSessionSchemaVersion29(currentVersion: number, db: BetterSqlite3.Database) { + const targetVersion = 29; + if (currentVersion >= targetVersion) { + return; + } + + console.log(`updateToSessionSchemaVersion${targetVersion}: starting...`); + + db.transaction(() => { + dropFtsAndTriggers(db); + db.exec(`CREATE INDEX messages_unread_by_conversation ON ${MESSAGES_TABLE} ( + unread, + conversationId + );`); + rebuildFtsTable(db); + // Keeping this empty migration because some people updated to this already, even if it is not needed anymore + writeSessionSchemaVersion(targetVersion, db); + })(); + + console.log(`updateToSessionSchemaVersion${targetVersion}: success!`); +} + // function printTableColumns(table: string, db: BetterSqlite3.Database) { // console.info(db.pragma(`table_info('${table}');`)); // }