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 实例,其中包含代表产品的文档。每个文档都有一个UnitPrice与之关联的属性,它的类型为float,在schema.xml.
UnitPrice
float
schema.xml
是否可以执行查询以返回最低价格的文档?我还想找到价格最高的文件。这是可能吗?
q={!lucene}*:*&sort=UnitPrice+asc&rows=1
这将返回按价格排序的MatchAllDocsQuery的第一个结果。