Reputation: 5735
I would like to add the ability to filter records using facets. I know Elastic Search can help with it, but I don't want to setup an elastic search server. I am looking for a really easy solution. I would like to have the search and facets filters run on Postgres and Ruby on Rails 5. Any recommendations?
Upvotes: 3
Views: 1097
Reputation: 16035
If you don't want to setup ElasticSearch/Solr server,
FortyFacets appears to be a very good option. It lets you easily build faceted search based on fields of your models (see Active Record model pattern).
Upvotes: 3