简体   繁体   中英

Can thinking-sphinx ransack work together?

Our project is using Ransack at the moment, we are thinking to introduce Thinking-Sphinx. However they both use search keyword. Is any way to use Thinking-Sphinx and Ransack in a same project?

Thank in advance.

Ransack's search method is just an alias. You can use the ransack method instead.

Instead of:

@q = Person.search(params[:q])
@people = @q.result(:distinct => true)

Use:

@q = Person.ransack(params[:q])
@people = @q.result(:distinct => true)

Person.search should call ThinkingSphinx as usual.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM