Increase slow query threshold to 100ms

Queries in the 50-70ms range are acceptable for now given SQLite's
write serialization constraints. Setting threshold to 100ms to focus
on truly problematic queries.
This commit is contained in:
2025-07-27 22:45:28 +02:00
parent 1f8ececedf
commit 32a540e0bf
2 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ import (
"time"
)
const slowQueryThreshold = 50 * time.Millisecond
const slowQueryThreshold = 100 * time.Millisecond
// logSlowQuery logs queries that take longer than slowQueryThreshold
func logSlowQuery(logger *slog.Logger, query string, start time.Time) {