You likely want an index on your ID PK if there isn't one.
You likely want an index on your ID PK if there isn't one.

.meta.duration or how long it takes to get a response?
npx wrangler d1 info if you're not sure which version you're on (it'll tell you if it's alpha)
SELECT * FROM table_name WHERE updated_at >= ? AND name > ? ORDER BY updated_at ASC, name LIMIT 1000updated_at and nameapp.get("/status", async (c) => {
await getDatabaseClient(c.env).select().from(schema.variables).limit(1);
return c.text("OK");
});SELECT * FROM table_name WHERE updated_at >= ? AND name > ? ORDER BY updated_at ASC, name LIMIT 1000updated_atname