Does anyone know of a great search solution for Drupal 7?

The graphic search module does not migrate to Drupal 7.
What are my alternatives?

+4
source share
4 answers

The search API module is new to Drupal 7 and allows you to choose from a variety of backends, including Solr , Xapian , the native database, and others. It supports faceted search no matter which backend is used.

+4
source

One option is the integration of apache solr http://drupal.org/project/apachesolr or the stand-alone written search module lucene.

+2
source

I installed faceted search in Drupal 7 using the search API, which has a search facet module. You will also need Entity api. Facets are created as blocks.

Although this continues to use the Solr module, which I did not use, I found this video very useful for some pointers on how to configure the search using api search. http://vimeo.com/15556855

+2
source

You (who comes from search engines) can use the FacetAPI module: https://www.drupal.org/project/facetapi

This is a very simple module for creating faceted searches in Drupal.

( http://beautiful7mind.wordpress.com/2013/03/10/step-by-step-how-to-implement-facet-search-on-data-in-drupal-7/ )

0
source

All Articles