From e6ab6ae8caa434b05149ae9e69e4940e044d303b Mon Sep 17 00:00:00 2001 From: hgw Date: Fri, 2 Feb 2024 03:17:39 +0000 Subject: [PATCH] Add msg type index to speed up cleaner --- server/plugins/messageStorage/sqlite.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/server/plugins/messageStorage/sqlite.ts b/server/plugins/messageStorage/sqlite.ts index 5525d5bd..4d2adb7a 100644 --- a/server/plugins/messageStorage/sqlite.ts +++ b/server/plugins/messageStorage/sqlite.ts @@ -38,7 +38,7 @@ type Rollback = { stmts: string[]; }; -export const currentSchemaVersion = 1679743888000; // use `new Date().getTime()` +export const currentSchemaVersion = 1703322560448; // use `new Date().getTime()` // Desired schema, adapt to the newest version and add migrations to the array below const schema = [ @@ -57,6 +57,7 @@ const schema = [ )`, "CREATE INDEX network_channel ON messages (network, channel)", "CREATE INDEX time ON messages (time)", + "CREATE INDEX msg_type_idx on messages (type)", ]; // the migrations will be executed in an exclusive transaction as a whole @@ -90,6 +91,10 @@ export const migrations: Migration[] = [ )`, ], }, + { + version: 1703322560448, + stmts: ["CREATE INDEX msg_type_idx on messages (type)"] + } ]; // down migrations need to restore the state of the prior version. @@ -103,6 +108,10 @@ export const rollbacks: Rollback[] = [ version: 1679743888000, stmts: [], // here we can't drop the tables, as we use them in the code, so just leave those in }, + { + version: 1703322560448, + stmts: ["drop INDEX msg_type_idx"] + } ]; class Deferred {