Lucene索引字节[]
本文关键字:字节 索引 Lucene | 更新日期: 2023-09-27 18:04:55
在我的应用程序中,我在byte[]
中读取系统文件并使用Lucene 2.9索引它下面是代码
byte[] readByteContent = File.ReadAllBytes(@"G:'pass.txt");
doc.Add(new Field("FILECONTENT", readByteContent,0,
readByteContent.Length, Field.Store.YES));
writer.AddDocument(doc);
现在我想搜索索引数据,但是由于我的数据在byte[]
中被索引,在byte[]
数据上创建查询的正确方法是什么
二进制字段没有索引,因此您不能对这些字段发出查询。
用于添加字段的方法将存储它,但它的内容没有索引。它的意思是附加任意二进制数据与Document
。