been playing around with Capistrano to get an automated deploy between my server and my development machine. I\'ve almost got it configured except that Capistrano doesn\'t seem to be able to start up
CORRECTION: Specifically I\'m looking to start and stop an EventMachine (EM) from a Ruby on Rails controller.
I am running Rails 3.0.5, and a page is reported on the console that it take 60ms, but if I check the Firefox Net load time chart, it takes 2.9 seconds.If I run the ab command on Bash, it says it take
I have install开发者_JAVA百科ed thin and try to do thin start, which end up with this error C:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require\': no such file to load -- C:
My RoR app on windows (xp as well as server 2008) stops responding after maybe a couple of days. Using guidance from stackoverflow as well, I set up services to run the server automatically at startup
This is the error I’m getting since I updated Thin from version 1.2.7 to 1.2.8. When I uninstall the newer version and tell my bundle to use 1.2.7 again everything is fine.
I\'m running a rails web app through the \'Thin\' server 1.2.8 on windows. When I st开发者_如何学编程art the server I noticed the message \"Maximum connections set to 1024\". I was wondering if its po
I have been looking into the possibility of backgrounding some jobs with EventMachine.In Sinatra this appears to work great but Rails 3 appears to execute all ticks before render开发者_开发问答ing a v
class App < Sinatra::Base def hello \"world\" end end From documentation I found tha开发者_StackOverflow中文版t I can start the application like this:
I\'m using Nginx as a reverse proxy for Thin instances. My goal is to set up a Rails (3) app to upload large files and do something with them.