使用Solr管理站点

时间:2014-02-17 15:14:08

标签: solr

如果我使用搜索查询字段查找“hallo”

,我会得到以下结果
 "response": {
    "numFound": 1,
    "start": 0,
    "docs": [
      {
        "_ts": 5981360301826638000,
        "name": "hallo",
        "ns": "test.test",
        "_id": "530207ea395d4616f8038174",
        "REC.static_data.summary.names.name.full_name": "Pritchett, C. Herman",
        "_version_": 1460293044544733200
      }
    ]
  }

我还在schema.xml中添加了字段<field name="REC.static_data.summary.names.name.full_name" type="text_general" indexed="true" stored="true" /><copyField source="REC.static_data.summary.names.name.full_name" dest="text"/>,但如果我试图找到Pritchett,那么C. Herman我没有结果。我是否必须伪装逗号和点?

solr

0 个答案:

没有答案