Search Results

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. …
2
votes

Dynamically instantiate a Ruby class similar to Java

class_name = 'String' eval(class_name).new Simple eval of the class name. …
1
vote

Good Ruby or Python OpenSource projects that need help?

The Ruby Redcloth Gem is currently looking for help in becoming JRuby compatible. See thi …
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, …
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 …