how does falcon handling forking as it relates to database connections? #283
Unanswered
josh-m-sharpe
asked this question in
Q&A
Replies: 3 comments
|
I see this thing: https://socketry.github.io/falcon/guides/rails-integration/index#isolation-level - but wrapping all our calls to active record in a mature codebase is infeasible. |
0 replies
|
We should update that documentation, Since Falcon does not fork while handling application code, so you should not need any such handlers. |
0 replies
|
Thanks. Some updated documentation would be very welcome. I think we're so used to forking severs and how to deploy those, anything different than that leaves a lot to discover :) |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
in puma land, we usually do something like this:
pseudocode:
Is there a corollary in falcon?
All reactions