标签: java solr wildcard
我的Solr索引中的文档有一个包含通配符的字段,例如*smith。我希望能够以类似于使用SQL数据库中的类似反向运算符的方式查询此字段。
*smith
例如,在MySQL中,如果我有一个名为names且具有列wildcards的表(如%smith中包含通配符的通配符),我将能够编写{{1 }}并获得查询结果。
names
wildcards
%smith
Solr以及理想的Solr Java API是否可行?