solr 中只有通配符搜索有效
我已经使用 SolrJ 索引了一些文档,现在我想使用 SolrJ 搜索相同的索引..我没有使用嵌入式服务器..
我什至无法通过他们的基于网络的面板获取我的索引的结果。
ps:顺便说一句,索引进展顺利,我通过查询运行通配符搜索“*:*”
检查了它们是否已被索引。
这是搜索片段:
try {
SolrQuery query = new SolrQuery();
query.setQuery("from:a");
query.addSortField("id", SolrQuery.ORDER.asc);
QueryResponse rsp = server.query(query);
SolrDocumentList docs = rsp.getResults();
System.out.println(docs.getNumFound());
String[] a = new String[100];
System.out.println(docs.toString());
} catch (Exception e) {
e.printStackTrace();
}
这是schema.xml 如果链接失效请告诉我...
I've indexed few docs using SolrJ, now I want to search the same index using SolrJ.. I am not using embedded server..
I cannot even get results through their web based panel for my index.
ps : btw, the indexing is going fine, I checked that they were indexed by running a wild card search "*:*"
through the query..
Here is the search snippet :
try {
SolrQuery query = new SolrQuery();
query.setQuery("from:a");
query.addSortField("id", SolrQuery.ORDER.asc);
QueryResponse rsp = server.query(query);
SolrDocumentList docs = rsp.getResults();
System.out.println(docs.getNumFound());
String[] a = new String[100];
System.out.println(docs.toString());
} catch (Exception e) {
e.printStackTrace();
}
Here is schema.xml
Tell me if the link doesn't work...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)