Okay we are getting somewhere, if you replace the migration with: ```sql CREATE TABLE Configs (

Okay we are getting somewhere, if you replace the migration with:
CREATE TABLE Configs (
    key TEXT NOT NULL,
    value TEXT NOT NULL,
    PRIMARY KEY (key)
)
STRICT;

CREATE TABLE Config1 (
    key TEXT NOT NULL,
    value TEXT NOT NULL,
    PRIMARY KEY (key)
)
STRICT;

CREATE TABLE Config2 (
    key TEXT NOT NULL,
    value TEXT NOT NULL,
    PRIMARY KEY (key)
)
STRICT;

-- Config3, Config4, Config5

Where
Config1
to
Config5
are all useless tables, and keeping rest of the code the same.
Now repeat the same 2 requests:
- First request: 8 written, 5 read.
- Second request: 0 written, 28 read.
Was this page helpful?