为什么 Solr 在推送简单字符串时不使用字段类型分析器?

发布于 2024-12-09 09:31:09 字数 707 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘然心甜 2024-12-16 09:31:09

实际上,示例 schema.xml 中定义的小写字段类型仅在将字段添加到索引或出于查询目的时才会小写。正如您在下面看到的,小写类型只是在索引或查询数据时应用 LowerCaseFilterFactory 设置的。

<!-- lowercases the entire field value, keeping it as a single token.  -->
<fieldType name="lowercase" class="solr.TextField" positionIncrementGap="100">
  <analyzer>
    <tokenizer class="solr.KeywordTokenizerFactory"/>
    <filter class="solr.LowerCaseFilterFactory" />
  </analyzer>
</fieldType>

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.

<!-- lowercases the entire field value, keeping it as a single token.  -->
<fieldType name="lowercase" class="solr.TextField" positionIncrementGap="100">
  <analyzer>
    <tokenizer class="solr.KeywordTokenizerFactory"/>
    <filter class="solr.LowerCaseFilterFactory" />
  </analyzer>
</fieldType>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文