fix: improve markAllAsRead performances

- make an index on unread+convoId
- make the message update trigger only run when the body changed
pull/2560/head
Audric Ackermann 3 years ago
parent e3006ae157
commit 0b8a10ad66

@ -494,12 +494,16 @@ async function getUnreadByConversation(conversationId: string): Promise<MessageC
async function markAllAsReadByConversationNoExpiration(
conversationId: string,
returnMessagesUpdated: boolean // for performances reason we do not return them because usually they are not needed
returnMessagesUpdated: boolean // for performance reason we do not return them because usually they are not needed
): Promise<Array<number>> {
// 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;
}

@ -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,

@ -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}');`));
// }

Loading…
Cancel
Save