有没有办法在Orchard中配置lucene.net来搜索Orchard根目录下dir中word文档的内容。有没有办法让它索引另一个网站。
答案 0 :(得分:0)
如果你能以某种方式在Orchard中将内容添加为contentitems,你可以在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.
});
}
}