0

我一直在尝试使用 Lucene 来索引我们的代码数据库。不幸的是,索引中省略了一些术语。例如,在下面的字符串中,我可以搜索“版本号”以外的任何内容:

version-number "cAELimpts.spl SCOPE-PAY:10.1.10 25nov2013kw101730 Setup EMployee field if missing"

我尝试使用 Lucene.NET 3.1 和 pylucene 6.2.0 实现它,结果相同。

以下是我在 Lucene.NET 中实现的一些细节:

using (var writer = new IndexWriter(FSDirectory.Open(INDEX_DIR), new CustomAnalyzer(), true, IndexWriter.MaxFieldLength.UNLIMITED))
{
  Console.Out.WriteLine("Indexing to directory '" + INDEX_DIR + "'...");
  IndexDirectory(writer, docDir);
  Console.Out.WriteLine("Optimizing...");
  writer.Optimize();
  writer.Commit();
}

CustomAnalyzer 类:

public sealed class CustomAnalyzer : Analyzer
{
    public override TokenStream TokenStream(System.String fieldName, System.IO.TextReader reader)
    {
        return new LowerCaseFilter(new CustomTokenizer(reader));
    }
}

最后,CustomTokenizer 类:

public class CustomTokenizer : CharTokenizer
{
    public CustomTokenizer(TextReader input) : base(input)
    {
    }

    public CustomTokenizer(AttributeFactory factory, TextReader input) : base(factory, input)
    {
    }

    public CustomTokenizer(AttributeSource source, TextReader input) : base(source, input)
    {
    }

    protected override bool IsTokenChar(char c)
    {
        return System.Char.IsLetterOrDigit(c) || c == '_' || c == '-' ;
    }
}

看起来像“版本号”和其他一些术语没有被索引,因为它们存在于 99% 的文档中。这可能是问题的原因吗?

编辑:根据要求, FileDocument 类:

public static class FileDocument
{
    public static Document Document(FileInfo f)
    {

        // make a new, empty document
        Document doc = new Document();

        doc.Add(new Field("path", f.FullName, Field.Store.YES, Field.Index.NOT_ANALYZED));
        doc.Add(new Field("modified", DateTools.TimeToString(f.LastWriteTime.Millisecond, DateTools.Resolution.MINUTE), Field.Store.YES, Field.Index.NOT_ANALYZED));
        doc.Add(new Field("contents", new StreamReader(f.FullName, System.Text.Encoding.Default)));

        // return the document
        return doc;
    }
}
4

1 回答 1

0

我想我是个白痴。我将点击数限制为 500,然后对找到的点击应用过滤器。预计这些项目将按照它们被索引的顺序被检索。因此,当我在索引末尾寻找某些东西时,它会告诉我什么都没有找到。事实上,它会检索预期的 500 个项目,但它们都会被过滤掉。

于 2017-06-15T10:27:47.230 回答