Lucene.net HTML 文档示例使用 html 字符串而不是文件?

发布于 2024-12-03 13:44:16 字数 177 浏览 0 评论 0原文

我正在做一个网络爬虫,我想在流处理或完成时使用 lucene 来索引。

我看到lucene.net html库的例子很好。但是,我不想继续下载到磁盘中。我想要的只是在下载网页时建立索引,或者可能是一串 html 内容的索引。

是否有任何示例可以使 lucence.net html 索引器使用内存流或字符串?

I'm doing a web crawler and I want to use lucene to index while the streaming is progressing or completed.

I've seen that the example of lucene.net html library is good. however, I don't want to keep download into disk. what i want and is just indexing while downloading the web or maybe index of a string of html content.

Is there any example that makes lucence.net html indexer working with memory stream or a string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柒七 2024-12-10 13:44:16

类似的东西?

        // create writer to index
        IndexWriter iw = new IndexWriter(new FileInfo("C:\\example\\"), new StandardAnalyzer());

        // create a document to index
        Document d = new Document();

        // create a field that the document will contain
        Field aField = new Field("test", "", Field.Store.YES, Field.Index.ANALYZED);
        // add the field to the document
        d.Add(aField);

        // index some data (4 documents)
        aField.SetValue("Example 1");
        iw.AddDocument(d);
        aField.SetValue("Example 2");
        iw.AddDocument(d);
        aField.SetValue("Example 3");
        iw.AddDocument(d);

        aField.SetValue("Example 4");
        // a field with Store.NO can be set with a TextReader
        Field notStored = new Field("test2", "", Field.Store.NO, Field.Index.ANALYZED);
        notStored.SetValue(new StringReader("Example 4 - From TextReader"));
        // add new field to a 4th document
        d.Add(notStored);
        iw.AddDocument(d);

        // closing writer commits changes to disk
        iw.Close();

something like that?

        // create writer to index
        IndexWriter iw = new IndexWriter(new FileInfo("C:\\example\\"), new StandardAnalyzer());

        // create a document to index
        Document d = new Document();

        // create a field that the document will contain
        Field aField = new Field("test", "", Field.Store.YES, Field.Index.ANALYZED);
        // add the field to the document
        d.Add(aField);

        // index some data (4 documents)
        aField.SetValue("Example 1");
        iw.AddDocument(d);
        aField.SetValue("Example 2");
        iw.AddDocument(d);
        aField.SetValue("Example 3");
        iw.AddDocument(d);

        aField.SetValue("Example 4");
        // a field with Store.NO can be set with a TextReader
        Field notStored = new Field("test2", "", Field.Store.NO, Field.Index.ANALYZED);
        notStored.SetValue(new StringReader("Example 4 - From TextReader"));
        // add new field to a 4th document
        d.Add(notStored);
        iw.AddDocument(d);

        // closing writer commits changes to disk
        iw.Close();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文