Increase connection pool size from 5 to 50

which might improve performance and will certainly prevent connection
pool exhaustion exceptions.
This commit is contained in:
Mike Dalessio
2025-08-15 14:47:01 -04:00
parent 274d2d547d
commit 8d23af3b70
+1 -1
View File
@@ -6,7 +6,7 @@
#
default: &default
adapter: sqlite3
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
pool: 50
timeout: 5000
extensions:
- <%= SqliteVec.loadable_path %>