对于字段类型,目前在 schema.xml 中使用 KeywordTokenizerFactory。
字段值就像Good?man。假设我想用? 那么我需要获取包含的值吗?即(好?人)。为此,我的查询就像*\?*
但它正在响应来自 solr 的整个文档。
如何搜索*和等通配符?在solr中使用通配符搜索?
对于字段类型,目前在 schema.xml 中使用 KeywordTokenizerFactory。
字段值就像Good?man。假设我想用? 那么我需要获取包含的值吗?即(好?人)。为此,我的查询就像*\?*
但它正在响应来自 solr 的整个文档。
如何搜索*和等通配符?在solr中使用通配符搜索?
You can either use ASCIIFoldingFilterFactory to convert symbols/numbers into unicode characters or use String field to index data and search it by escaping the characters.