2007/5/10, Ryan Allen <[EMAIL PROTECTED]>: > Hey Everybody! > > I was wondering if/how Camping can process more than one request at > once (i.e. not what Rails does). I'm fairly new to threads, and I > bought a book, and read some of it, and dived into the Camping source... > > I found some thread stuff but I'm not... entirely sure. So I thought > I would ask!
Hi, Camping is green-thread-safe on the requests. At every requests, YourApp.run is called and an instance of your routed controller is created. You just need a web server that allows concurrency, like mongrel. Just don't use ActiveRecord for your data backend because I don't believe it's green-thread-safe. -- Cheers, zimbatm _______________________________________________ Camping-list mailing list [email protected] http://rubyforge.org/mailman/listinfo/camping-list

