SQLite on Rails: The how and why of optimal performance
fractaledmind.github.io
SQLite on Rails: The how and why of optimal performance
1–10 of 98 posts
Re: SQLite on Rails: The how and why of optimal performance
#2Re: SQLite on Rails: The how and why of optimal performance
#3This is a really long blog post to just say that you should turn on the WAL if you want concurrency out of SQLite. All the other stuff is superfluous.
I learned about BEGIN IMMEDIATE TRANSACTION.
And there's also busy_timeout.
The article also explains why/how/when things occur in detail which is valuable.
Re: SQLite on Rails: The how and why of optimal performance
#4This is useful to anyone trying to scale SQLite web applications, even beyond Rails.
So thank you!
Re: SQLite on Rails: The how and why of optimal performance
#5This is a really long blog post to just say that you should turn on the WAL if you want concurrency out of SQLite. All the other stuff is superfluous.
Re: SQLite on Rails: The how and why of optimal performance
#6This is a really long blog post to just say that you should turn on the WAL if you want concurrency out of SQLite. All the other stuff is superfluous.
Re: SQLite on Rails: The how and why of optimal performance
#7Re: SQLite on Rails: The how and why of optimal performance
#8much easier just to use pg
Should you do this for all apps? No. Do you have read heavy applications? Consider SQLite
Re: SQLite on Rails: The how and why of optimal performance
#9Re: SQLite on Rails: The how and why of optimal performance
#10much easier just to use pg