有没有办法在 Orchard 中配置 lucene.net 以在 Orchard 根目录下的目录中搜索 word 文档的内容。有没有办法让它索引另一个网站。
问问题
148 次
1 回答
0
如果您可以以某种方式将内容添加为 Orchard 中的内容项,则可以OnIndexing
在ContentHandler
.
这样的事情应该这样做:
public class WordDocumentContentHandler: ContentHandler {
public WordDocumentContentHandler() {
OnIndexing<ContentPart>((context, part) => {
// Detect if the part has the field containing the URL to the document
// and analyze it here.
});
}
}
于 2012-12-10T13:37:38.507 回答