3
votes
Why all the Active Record hate?
I think there is a likely a very different set of reasons between why people are "hating" on ActiveRecord and what is "wrong" with it.
On the hating issue, there is a lot of venom towards a …
1
vote
How do I do full-text searching in Ruby on Rails?
It depends on what database you are using. I would recommend using Solr as it offers up a lot of nice options. The downside is you have to run a separate process for it. I have used Ferret as well …
0
votes
What’s the best option for searching in Ruby on Rails?
It depends on what database you are using. I would recommend using Solr as it offers up a lot of nice options for fuzzy search and has a great query parser. The downside is you have to run a separa …
1
vote
Database sharding and Rails
Connecting Rails to multiple databases is not a big deal- you simply have an ActiveRecord subclass for each shard that overrides the connection property. That makes it pretty simple if you need to …
3
votes
How to do a rolling restart of a cluster of mongrels
I agree with the seesaw approach more than the rolling approach you are seeking. The problem is that you end up in situations where load balancing can throw users back and forth between different v …
3
votes
RoR + SMS: Rails web app architecture to send/receive SMS?
I would question whether this is really a web application. If the view layer is SMS, you don't have to use the internet as a transport, you could use hardware to connect to the cell phone network. …
0
votes
Mongrel cluster and multi-applications problem
You need to put a timeout on your Soap4R requests. Set the connect_timeout attribute to something rather small. This should cause an exception to be handled in your code and not just leave the req …
4
votes
Rails & Windows
You're problems are not with Windows. I've been doing Rails on Windows for 2.5 yrs without any major problems. I find it easier than, say, Rails on Solaris.
I think Aptana RadRails is stil …
0
votes
Getting super_exception_notifier to work
Maybe it has has something to do with this:
http://github.com/pboling/exception%5Fnotification
Email notific …
1
vote
Python Vs RoR : on Size
One option with Ruby on Rails is to go with a JRuby deployment which would allow you to pack it all into a single .war file. This would require the person deploying the web application to have a ja …
4
votes
autoreload partial every few seconds ala twitter search style
The simplest thing to use in Rails is periodically_call_remote . Example from Agile Web Development with Ra …
1
vote
Missing template
I believe that your code is executing the find action. However, after it finds the car object, it needs to write that into a template that shows the results of your search. By convention, rails lo …
0
votes
rails redirect after create problem
What is this .1 doing at the end of the line??
flash[:notice] = :group_was_successfully_created.l
I tried to run similar code in my environment and it choked on th …
6
votes
Changing Index Page - Ruby on Rails
You need to do two things
Delete the file /public/index.html
Update the file /config/routes.rb
map.root :controller => "posts"
This will then ca …
1
vote
Rails category navigation with tags
I think you are mixing two concepts here, a least in the question, perhaps not in your application. You have a category list modeled with acts_as_tree. That supports subcategories. The tags should …
