[Please quote when replying, so that the discussion is easier to 
follow.]

Max Williams wrote:
> Well, fast text searching without switching to MyIsam/Postgres for a 
> start.  

Essentially impossible.  You need an index for that.  The way to get a 
full-text index is to switch to MyISAM or, better, Postgres.  Building a 
full-text index in the application layer is poor practice and less 
maintainable.

Moral: let the DB do the indexing.  If your DB doesn't support the 
indexing you need, change your DB -- proper indexing is vital.

But also the ability to automatically deal with pluralisation
> and (probably at some point) fuzzy matching.  Definitely the 
> pluralisation at least, anyway.

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to