1
vote
How do I gracefully shut down a Mongrel web server
Better question is how to keep your app from consuming so much memory that it requires you to reboot mongrels from time to time.
www.modrails.com reduced our memory footprint significantly …
0
votes
Adding Functionality to Rails
Require and include are 2 different things.
Require is to strictly load a file once from a load path. The loadpath is a string and this is the key used to determine if the file has already …
2
votes
How do you restart Rails under Mongrel, without stopping and starting Mongrel
in your rails home directory
mongrel_rails cluster::restart
…
1
vote
Polymorphic Models in Ruby on Rails?
I would have the following models
Tshirt
TshirtBox has_many TshirtItems
TshirtBoxItems (This is basically a join table with an id tshirt_box_id and tshirt_id) belongs_to Tshirt …
0
votes
Rails Sessions over servers
In Rails 2.0 there is now a CookieStore that stores all session data in an encrypted cookie on the client's machine.
…
2
votes
RoR: nested namespace routes, undefined method error
I'm assuming you are using rails 2.0.x so the way you generate a route is
__path
admin_blog_path(blog)
and if you are riding a previous version I think it's just …
2
votes
From objects to tables using activerecord
Even if you could dynamically create tables on the fly like that (not saying that you can). I wouldn't want to do that. There is so much potential for error there.
I would create the migr …
0
votes
Rails test hanging - how can I print the test name before execution?
can you just hit ctrl+c to halt the execution and it will display the stack trace of where you halted the execution?
…
0
votes
Testing rails partial views standalone
Testing a view without the controller code is a dangerous thing. Your tests might pass but your application might throw an error. Always test against real life situations not artificial ones. …
1
vote
How do you do relative time in Rails?
You can use the arithmetic operators to do relative time.
Time.now - 2.days
Will give you 2 days ago.
…
1
vote
Who are good web hosts for Ruby on Rails projects?
RackSpace is great but they are expensive.
RailsMachine if you want to host on VMs is great. They are better then most because they allocate dedicated CPUs for you instead of sharing processing ti …
2
votes
Fragment Caching with Memcached
You can set the fragment_cache_store in your environment.rb
ActionController::Base.cache_store = ActiveSupport::Cache::MemCacheStore.new()
…
0
votes
RoR: named_scope, all records created within last 7 days?
You need to pass named_scope a proc so it will be evaluated every time the call to named_scope is run. Otherwise if you specify Time.now it will run once (on first call) and be "cached" until the …
1
vote
Shared file storage for a Rails Application
Another good alternative is from the creators of Memcached:
Mogile FS
http://www.danga.com/mogilefs/
…
4
votes
Basic Rails question: manually inserting a row into a database table
You create rows in your database by creating and saving new ActiveRecord Objects (your models).
So in your controller code you could create a new row of DataTypeTwo by doing
…
