I don't know if there are any folks wrapping Unicorn, but I've removed the Unicorn.run method in unicorn.git as part of an effort to reduce stack size (which will improve GC performance and reduce the cost of generating (and examining) backtraces.
You can replace: Unicorn.run(app, options) With: Unicorn::HttpServer.new(app, options).start.join This will be in the upcoming 4.x release. ref: git://bogomips.org/unicorn.git commit 5d2284afdc2d4f4ff122394ae5fd78a32cb8c09e -- Eric Wong _______________________________________________ Unicorn mailing list - [email protected] http://rubyforge.org/mailman/listinfo/mongrel-unicorn Do not quote signatures (like this one) or top post when replying
