solr中 field的 indexed是什么意思

在网上查,介绍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到底是什么意思呢?

indexed是决定 你的content是否在solr中建立索引,也就是是否分词,而 stored的意思是 你是否要将该字段以及所对应的值存储到solr服务器

因为你的stored是true 所以 存储到了solr 服务器中,因此在你查询所有的时候,是可以显示的,因为服务器库中存在