在网上查,介绍indexed为fasle时,此属性就不参与查询。
可是我的代码如下:
<field name="content" type="string" indexed="false" required="true" stored="true"/>
查询时参数为:
query = new SolrQuery();
query.setQuery("content:它对外提供类似于Web-service的API接口");
待查询数据:
{
"id":"10",
"content":"Solr是一个独立的企业级搜索应用服务器",
"_version_":1549166342956908544},
{
"id":"11",
"content":"它对外提供类似于Web-service的API接口",
"_version_":1549166342988365824},
{
"id":"12",
"content":"用户可以通过http请求",
"_version_":1549166342988365825},
{
"id":"13",
"content":"向搜索引擎服务器提交一定格式的XML文件生成索引",
"_version_":1549166342989414400},
{
"id":"14",
"content":"也可以通过Http Get操作提出查找请求",
"_version_":1549166342990462976},
{
"id":"15",
"content":"并得到XML格式的返回结果",
"_version_":1549166342990462977}]
}
查询结果为:
{
"id":"11",
"content":"它对外提供类似于Web-service的API接口",
"_version_":1549166342988365824}]
为什么还能检索出来呢?是我理解的不对么?indexed到底是什么意思呢?