Viewing profile — fractaledmind
fractaledmind
HN member- Joined
- Mon, Nov 15, 2021, 4:33 AM UTC
- HN karma
- 11
- Public activity
- 20 items
- HN profile
- View on Hacker News ↗
About fractaledmind
No profile information was provided.
Recent public activity
-
comment
Comment #41863676
Author here: these are my original speaker notes and slides stitched together for the talk that I gave at Rails World 2024 in Toronto at the end of September. There is a link to th…
-
comment
Comment #41863562
Rails works with a connection pool and multiple threads processing incoming requests. Not a problem. In fact, Rails has one of the very best tunings to use SQLite in production in …
-
comment
Comment #41520735
As I explain in the post, if you have multiple connections and consistent write load, the timeout will penalize older quereres and noticeably harm your long tail latency
-
comment
Comment #41520712
Very true. There isn’t an actual limit. You can horizontally scale with SQLite if you want to or need to. I just think it is worth pushing vertical scaling as far as possible as lo…
-
comment
Comment #41520653
Not so fast https://github.com/rails/rails/pull/52889
-
comment
Comment #41518649
This is my perspective as well. You certainly can horizontally scale with SQLite, but I strongly recommend that you vertically until you hit an actual limit there. If you know you …
-
comment
Comment #41518630
I’m very excited that yes indeed we have the four major pillars in Rails 8, which is releasing soon, but can be used now via the main branch. The default, out-of-the-box experience…
-
comment
Comment #41518274
You can read more discussion here: https://github.com/sparklemotion/sqlite3-ruby/pull/528 and here: https://github.com/digital-fabric/extralite/pull/46 to see how it was validated …
-
comment
Comment #39837355
This presentation is focused on the use-case of vertically scaling a single server and driving everything through that app server, which is running SQLite embedded within your appl…
-
comment
Comment #39837319
Yep, that was an errant duplication. I did proofread, but how is it that one thing always seems to sneak through anyway? Thanks for the catch. Fixing now.
-
comment
Comment #39837281
I've been using it for a couple different production apps, and it has been great. No problems for me.
-
comment
Comment #39431973
I cannot believe how simple and elegant this is. Using an iframe as a request/response proxy to enable targeted replacement is just
-
comment
Comment #38024831
This looks like it could be a big deal for Rails developers. Increased speed to build standard UI elements, completely control over the look and feel, plus increased rendering spee…
-
comment
Comment #37686102
Yes, the .sqlite file needs to be persisted across deployments. It is fairly common for the /storage directory to be persisted across deployments. The Kamal deployment tool will us…
-
comment
Comment #37686067
When you open your database connection in WAL journal mode, you can have multiple concurrent readers. This is the new default for all Rails applications. WAL mode doesn’t allow con…
- story
- story
- story
-
comment
Comment #37418127
The first time I read about PlanetScale's "database branching" feature, I felt the way one does when they realize something, but it feels like they always should have known it. Dea…
- story