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.
我想在博客网站上提供搜索功能。但我不仅想搜索整个文档,还想只搜索一个作者的文档。 由于我想使用 lucene 提供全文索引,创建索引时如何执行此操作?
将作者姓名作为单独的字段进行索引可以让您搜索所有包含“Lucene”且作者为“fisher”的文档,例如(QueryParser 语法中的“lucene author:fisher”)。