I wrote some details about how to host a Rails 7.1 application in Falcon: https://github.com/socketry/falcon-rails-example - I'll add some more application level examples, including WebSockets and streaming soon.
@ioquatix Thanks so much, this is great!
One thing I couldn't find was info about determining the number of Active Record database connections used under the fiber-based model.
For example, the default config using Puma uses up to (NUMBER_OF_PROCESSES * RAILS_MAX_THREADS) database connections, so a 2-process server with 5 threads/process uses 10 db connections.
Is there anything new to understand here?