Ruby on Rails Wednesday, June 30, 2010

[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-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment