腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(929)
视频
沙龙
2
回答
Lucene.Net
IndexReader
的StructureMap“条件单例”
、
、
、
、
我有一个线程安全对象,它的创建成本很高,并且需要通过我的应用程序(一个Lucene.Net
IndexReader
)来使用。对象可能会变得无效,这时我需要重新创建它(
IndexReader
.IsCurrent为false,需要使用
IndexReader
.Reopen创建一个新实例)。
浏览 1
提问于2011-02-10
得票数 6
1
回答
如何在lucene中使用term删除文档
、
term = new Term(FIELD_PATH, "compatible");
IndexReader
indexReader
=
IndexReader
.open(directory);
indexReader
.close();
浏览 0
提问于2010-10-25
得票数 3
回答已采纳
2
回答
正确使用Lucene.Net
IndexReader
、
、
public class ViewData public static
IndexReader
indexReader
{ 这意味着当搜索器以这种方式打开时,
IndexReader
永远不会关闭。using (
indexReader
) using
浏览 0
提问于2019-02-06
得票数 0
回答已采纳
1
回答
如何填充lucene 5.3索引
这是我的代码:private IndexWriter indexWriter;
indexReader
throws Exception {} p
浏览 5
提问于2015-12-08
得票数 0
回答已采纳
1
回答
如何在Lucene中正确使用多阅读器API?
、
IndexReader
r1=
IndexReader
.open(...)1)2) IndexSearcher s = new IndexSearcher(mr,new
IndexReader
浏览 2
提问于2012-01-22
得票数 0
回答已采纳
2
回答
查找Lucene索引的术语列表
是否有可能将Lucene索引中所有术语的列表提取为字符串列表?我在文档中找不到那个功能。谢谢!
浏览 0
提问于2012-06-22
得票数 10
回答已采纳
2
回答
为什么lucene 2.4中的“删除文档”不起作用?
、
我的代码是
IndexReader
indexReader
=
IndexReader
.open(directory);
indexReader
.deleteDocuments(new Term("name"
浏览 0
提问于2009-09-01
得票数 2
回答已采纳
1
回答
Lucene.NET -检查索引中是否存在文档
、
、
IndexReader
reader;TermDocs docs = reader.TermDocs编辑:
IndexReader
是一个抽象类。在文档中,它说要用
IndexReader
.Open()作为参数调用Lucene.Net.Store.Directory,但它本身是抽象的。下面是:
IndexReader
reader = <
浏览 2
提问于2014-01-08
得票数 2
回答已采纳
2
回答
如何从solr/ data /index读取数据
、
、
、
如何通过简单的控制台Java应用程序从solr/data/index读取数据?我找到了一些。
浏览 4
提问于2013-07-25
得票数 3
回答已采纳
2
回答
打开存储在hdfs中的lucene索引
、
、
如何读取通过HDFS存储的lucene索引目录,即如何获取通过HDFS存储的索引的
IndexReader
。
IndexReader
将在映射任务中打开。类似于:
IndexReader
reader =
IndexReader
.open("hdfs/path/to/index/directory"); 谢谢,阿基尔
浏览 0
提问于2010-05-04
得票数 2
回答已采纳
5
回答
如何安全关闭
IndexReader
?
、
我的问题很简单,当使用
IndexReader
.openIfChanged (reader)替换以前的reader时,如何安全地关闭oldReader
IndexReader
newReader=
IndexReader
.openIfChanged(reader);由于这一变化,我得到了一个例外: org.apache.lucene.store.AlreadyClosedException: this
浏览 2
提问于2012-07-08
得票数 3
回答已采纳
1
回答
lucene.net语音过滤器
、
、
Lucene.Net.Store.Directory dir =Searcher indexSearch = new IndexSearcher(
indexReader
); //
IndexReader
浏览 0
提问于2012-09-21
得票数 2
回答已采纳
1
回答
Lucene近实时搜索
、
、
谁能告诉我使用以下代码中的一种或另一种的区别和优点:和注意,在第一种情况下,我不需要indexWriter处于与
IndexReader
相同的进程中。
浏览 5
提问于2013-10-17
得票数 0
回答已采纳
1
回答
将具有相同结构的文档的多个Lucene索引组合起来,以进行排序查询
、
、
我正在使用Lucene对Java应用程序中的几个存储库进行索引。我有3个索引来存储相同结构(字段)的文档。其中一个包含大约160.000个文档,第二个30.000和第三个40.000。这有可能吗?
浏览 4
提问于2013-12-12
得票数 4
回答已采纳
2
回答
使用
IndexReader
IsLocked和解锁方法
、
在IndexWriter上调用AddDocument()之前,我可以调用如果返回true,则调用即{} writer =
浏览 5
提问于2009-05-11
得票数 2
回答已采纳
1
回答
Lucene:从IndexSearcher获取异常时DocID太高
、
下面是我尝试获取文档的方法:ScoreDoc[] hits = searcher.searchorg.apache.lucene.index.BaseCompositeReader.document(BaseCompositeReader.java:109)org.apache.lucene.
浏览 0
提问于2013-06-16
得票数 1
回答已采纳
1
回答
Lucene 4.6获取文档向量
、
我想用lucene 4.6得到一些文档的向量。我对Lucene很陌生,我找不到一个向导来帮助我。你能帮帮我吗?注:我已经做了索引和搜索,我只需要代码如何获取向量的文件!提前谢谢你
浏览 0
提问于2014-03-02
得票数 0
回答已采纳
7
回答
对多个请求使用相同的indexSearcher实例时出现问题
、
我在一个.net web应用程序中使用Lucene API。我想使用相同的索引搜索器实例为所有的requests.Hence存储索引搜索器实例在http缓存中。if (HttpRuntime.Cache["IndexSearcher"] == null) searcher = new IndexSearcher(jobIndexFolderPath); HttpRuntime.Cache["IndexSearcher"] = s
浏览 1
提问于2009-05-22
得票数 2
回答已采纳
3
回答
在lucene.net中,我们可以在不给字段name..and的情况下搜索内容吗?它将在所有已索引的字段中进行搜索。
在lucene.net中,我们可以在不给字段name..and的情况下搜索内容吗?它将在所有已索引的字段中进行搜索。
浏览 2
提问于2009-07-27
得票数 13
回答已采纳
1
回答
Lucene
IndexReader
升级
、
、
应用程序具有以下代码:String[] fields =
indexReader
.getFieldNames
浏览 4
提问于2016-02-01
得票数 2
回答已采纳
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
Lucene基本概念及使用
深度解析 Lucene 轻量级全文索引实现原理
热门
标签
更多标签
云服务器
ICP备案
对象存储
腾讯会议
实时音视频
活动推荐
运营活动
广告
关闭
领券