ankane / searchkick

Intelligent search made easy
MIT License
6.55k stars 759 forks source link

Tire::Search::SearchRequestFailed: 400 #78

Closed ngw closed 10 years ago

ngw commented 10 years ago

Hi, I'm facing a weird problem with searchkick right now, for some reasons I'm not able to query the service.

https://gist.github.com/ngw/bb2cab6fb08b726be13e

What am I doing wrong?

ngw commented 10 years ago

Sidenote: Book.search( '*' ) works...

ankane commented 10 years ago

Looks like you need to reindex. Try:

Book.reindex
ngw commented 10 years ago

Is it normal that it takes forever to reindex ? It's 20 minutes already...

ankane commented 10 years ago

Depends on your search_data method and how many records are in the table. Using the search_import scope can drastically reduce indexing time if you have N + 1 queries.

ngw commented 10 years ago

Ok. thanks