简体   繁体   中英

SOLR Facet Search Results

Ive got following schema.xml

  • ...
  • id
  • book
  • pages
  • genre (horror,action)
  • ...

Is solr able to return results like this?

genre;books;pages

horror(genre);12(books);124543(pages)

action(genre);2(books);437(pages)

As you can see i want to facet over more than one field. The only thing i got work is the facet search over genre and books. But i want to have the pages as a sum also in my results. Is Solr able to do this?

Thanks!

you can check for Solr Pivot Faceting which will provide you with hierarchy facets.
You can check if you get the pages, the summing can be done at Client side.

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