9
votes
When would you NOT want to use memcached in a Ruby on Rails app?
Don't use memcached if your application is able to handle all requests quickly. Adding memcached is extra mental overhead when it comes to coding your app, so don't do it unless you need it.
…
3
votes
Generating graphs in a RubyOnRails application
For simple locally generated graphs, check out Gruff.
Also worth a look are some of the various Google Charts ruby libs, …
0
votes
Rails: Runtime configuration of ActionMailer?
Since the configuration files are all Ruby, then the settings can easily be fetched from a configuration file or the like at runtime.
Here's a post I wrote a while back on …
1
vote
Adding an autoincrementing SNO column in Rails Scaffolding?
It's not clear whether there is any relationship involved, but it sounds like counter_cache may be a good fit.
A …
0
votes
will_paginate works on local box, gives “undefined method to_i” on server but both point to the same database
If the page param is nil, it's often a good idea to default to a value of 1. This covers cases where no url parameter for page is passed. Where a parameter is passed, it will be used in place of th …
