1
0

optimize stats using "materialized view"

This commit is contained in:
2025-07-07 09:16:52 +02:00
parent 1e291882a6
commit be3023f55d
8 changed files with 31 additions and 58 deletions

View File

@@ -0,0 +1,30 @@
CREATE TABLE if not exists instances (
-- PK will be rowid
domain TEXT UNIQUE
, name TEXT
, slogan TEXT
, description TEXT
, languages TEXT
, open INT -- BOOLEAN
, version TEXT
, location TEXT -- from IP
, failure INTEGER
, createdAt INTEGER -- second since epoch
, updatedAt INTEGER -- second since epoch
) strict;
create table if not exists stats (
insertedAt INTEGER
, instance_id INTEGER -- rowid of instance
, users INTEGER
, local_groups INTEGER
, total_groups INTEGER
, local_events INTEGER
, total_events INTEGER
, local_comments INTEGER
, total_comments INTEGER
, following INTEGER
, followers INTEGER
-- PK, would have been (instance_id, date)
-- to spare index, we declare no PK
) strict;