Faceted Search module is not being moved to Drupal 7.
What are my alternatives?
相关问题
- Drupal 8: How do I customize a form widget to show
- How to balance webserver bandwith usage?
- drupal :: order complete hook and upgrade user per
- Change redirect in Drupal 7 for Password Recovery
- Adding attachment to Jira's api
相关文章
- Render a Drupal node
- How to allow multiple blocks in a module of Drupal
- How can I redirect a Drupal user after they create
- Drupal 6: Getting custom fields into the database
- Drupal 7 retain file upload
- Faceted searching and categories in MySQL and Solr
- Drupal - Set 'user/%/edit/uprofile' to def
- I can't seem to get faceted search working in
The Search API module is new for Drupal 7, and allows you to choose from a variety of backends, including Solr, Xapian, native database and others. It supports faceted search irregardless of which backend is used.
You (who comes from search engines) can use FacetAPI module: https://www.drupal.org/project/facetapi
It's a very easy module to create faceted search in Drupal.
(http://beautiful7mind.wordpress.com/2013/03/10/step-by-step-how-to-implement-facet-search-on-data-in-drupal-7/)
I have set a faceted search up in Drupal 7 using the Search API which has a search facets module. You will also need Entity api. The facets get created as blocks.
Although this goes on to use the Solr module, which I didn't use, I found this video very useful for some pointers on how to set up a search using search api. http://vimeo.com/15556855
One option is an apache solr integration http://drupal.org/project/apachesolr or a self written lucene search module.