为什么 Solr 在推送简单字符串时不使用字段类型分析器?
我正在尝试使用 PECL 将 html 内容添加到 Solr。不幸的是,我可以推送内容,但它不会使用 schema.xml 中的分析器类型,
例如:
将内容添加到 solr:
$client = new SolrClient($options);
$doc = new SolrInputDocument();
$doc->addField('title', 'SELLING CARS');
Schema.xml 中的“标题”字段
<field name="title" type="lowercase" indexed="true" stored="true" multiValued="true"/>
这应该确保添加的字符串转换为小写(我假设) 但是当查询索引时:
$query->setQuery('*:*');
$query_response = $client->query($query);
内容仍然是大写的?
以下输出...有什么想法我做错了吗???
...
[0] => SolrObject 对象 ( [id] =>第422章 [标题] =>大批 ( [0] =>卖车 ) )
I am trying to add html content to Solr with PECL. Unfortunately I can push content but it will not use the Analyzer types in the schema.xml
For example:
Adding content to solr:
$client = new SolrClient($options);
$doc = new SolrInputDocument();
$doc->addField('title', 'SELLING CARS');
Schema.xml for the field "title"
<field name="title" type="lowercase" indexed="true" stored="true" multiValued="true"/>
This should make sure that the string added is converted to lowercase (I presume)
But when querying the index with:
$query->setQuery('*:*');
$query_response = $client->query($query);
The content is still in Uppercase?
Following output.... Any ideas what I am doing wrong???
...
[0] => SolrObject Object
(
[id] => 422
[title] => Array
(
[0] => SELLING CARS
)
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,示例 schema.xml 中定义的小写字段类型仅在将字段添加到索引或出于查询目的时才会小写。正如您在下面看到的,小写类型只是在索引或查询数据时应用 LowerCaseFilterFactory 设置的。
Solr 不会更改您输入的实际值。如果您确实希望将其以小写形式存储在索引中,我建议在将其提交到索引时将值小写。
Actually, the lowercase field type defined in the example schema.xml only lowercases the field when adding it to the index or for query purposes. As you can see below the lowercase type is just setup apply the LowerCaseFilterFactory when indexing or querying the data.
Solr will not change the actual value that you input. If you truly want it to be stored in lowercase in the index, I would recommend lowercasing the value when submitting it to the index.