搜索 API Solr 与五星级(或类似)评级系统集成(fascet 和排序)
我正在尝试使用搜索 API 分面搜索和 Solr 集成按评级对节点进行排序。我已经设置了五星级评级(每个节点大约 9 个,它是一个大型多轴评级系统。)但我无法对这些评级进行索引!
有人可以帮助我了解如何更改此设置,以便我可以使用方面搜索进行评级吗?
否则,是否有关于其他模块(五星级除外)的任何建议可以允许对选票进行索引?
谢谢你!
贾斯汀
I'm attempting to sort nodes by ratings using the Search API faceted search with Solr integration. I've already set up fivestar ratings (about 9 per node, its a large multi-axis rating system.) but i'm unable to index these ratings!
Can someone help me understand how to change this so I can use a facet search for ratings?
Otherwise, are there any recommendations on other modules (aside from fivestar) which would allow the votes to be indexed?
Thank you!
Justin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先你需要安装facetapi模块——这是用于facets的。
其次,在 hook_update_index 上,您需要向 apachesolr 索引添加评级
请注意,这只是一个示例。由于多语言站点以及字段数组中“und”键的问题,我运行了 2 个循环。在这里,您也不能添加所有评级,但可以计算每个节点的一个修饰符,该修饰符将用于排序(如果评级中没有该修饰符)
第三,使用 hook_facetapi_facet_info 添加方面
更多有关方面的信息,您可以在facetapi.api.php文件中找到;
第四 - 重新索引内容并在 apachesolr 设置中启用 Facet。
问候,斯拉瓦
first you need install facetapi module -that's for facets.
second, on hook_update_index, you need to add rating to apachesolr index
Please note, it's just an example. I run 2 loops because of multilingual site and problem with this "und" key in field array. Here also you can not add all ratings, but calculate, for instance,one modifier per node, which will be used for sorting (if you don't have that one in ratings)
Third, add facets with using hook_facetapi_facet_info
more about facets you can find at facetapi.api.php file;
Forth - reindex content and enable facet in apachesolr settings.
Regards, Slava