mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
21402c7aaa
This change adds a support-index for `GetAPIKeysLastUsedAfter`. On dogfood (24h): called 4.4k times, 380ms average. Change for tested time range: `170ms` -> `3.3ms`.
3 lines
173 B
SQL
3 lines
173 B
SQL
CREATE INDEX api_keys_last_used_idx ON api_keys (last_used DESC);
|
|
COMMENT ON INDEX api_keys_last_used_idx IS 'Index for optimizing api_keys queries filtering by last_used';
|