Re: Programmatically Spinning Workers Up and Down

2010-06-23 Thread Keenan Brock
Pedro, This is great! One concept I got from a 2007 IT Conversation podcast interviewing GigaVox and SmugMug: You are optimizing cost vs responsiveness. Reducing the granularity of startup and shutting down of instances saves quite a deal of money. Don MacAskill spoke more about this and

how to setup mime-type in my rails app

2010-06-23 Thread Eki
Hi there , Is there anyway to setup mime-type of jar file , I need my mobile app to download some jar file in public folder , I adding some code for mime_type.rb file something like this : Mime::Type.register text/vnd.sun.j2me.app-descriptor, :jad Mime::Type.register application/java-archive,

Bundler path Option

2010-06-23 Thread logicaltext
Hi All, Has anyone had any luck using the path option in a `Gemfile` for a vendored gem? source rubygems.org gem rails, 3.0.0.beta4 ... gem mygem, 0.0.1, :path = vendor/gems/mygem-0.0.1 This seems to work when I run my app locally in production mode, but I get `const_missing`

Re: how to setup mime-type in my rails app

2010-06-23 Thread Keenan Brock
Hey Eki, hostname = the name of your app filename = the name of the jar file telnet hostname 80 HEAD filename HTTP/1.1 Host: hostname (2 returns) What does it say is the Content-Type? There is probably an easier way to just use firefox ... --Keenan On Jun 23, 2010, at 6:53 AM, Eki wrote:

Re: Programmatically Spinning Workers Up and Down

2010-06-23 Thread Roman Catz
In addition, could anyone provide good solution for running short tasks from time to time but in preset time, I do not now time exactly because user define it by itself. Running full worker will be expensive for this type of project. -- You received this message because you are subscribed to the