Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一些关于 Solr 索引的信息,但我找不到。我想知道是否必须对我只想应用过滤器查询的字段进行索引,或者将它们标记为已存储就足够了。
提前致谢
您可以参考可以免费下载的 lucidworks solr 参考指南。
字段属性和用例映射表:-
是的,它必须被索引。它不需要存储。
存储和索引在 Solr 上是完全不同的概念。如果要对字段进行查询,则应设置indexed=true。如果您还想在查询时检索数据,则应设置stored=true。
所以,对于你的问题;是的,如果你想进行查询,你应该设置indexed=true 。