Is Sinatra multi-threaded? I read else where that \"sinatra is multi-threaded by default\", what does that imply?
Consider this example
get \"/multi
Thought I might elaborate for people who come across this. Sinatra includes this little chunk of code:
server.threaded = settings.threaded if server.respond_to? :threaded=
Sinatra will detect what gem you have installed for a webserver (aka, thin, puma, whatever.) and if it responds to "threaded" will set it to be threaded if requested. Neat.