Apache Solr 和用于搜索的自定义字段过滤器
在我的模式中,我有一个字段(薪水),它实际上是一个字符串,因为它可以是任何东西(从某些网站获取):只有数字、字符串,根本没有数字。基本上什么都可以。我对该字段的了解是,如果有数字,我需要提取它们,可能进行一些操作(实际上是基本操作)并在我的搜索中使用结果。
我怎样才能做到这一点?我可以定义自定义函数然后使用 {!func} 调用它吗?
in my schema i have a field (salary) which is actually a string, because it can be anything (fetched from some websites): only numbers, strings, no numbers at all. Basically, anything. What i know about that field is that if there are numbers, i need to extract them, do maybe some manipulation (basic operations, actually) and use the result in my searches.
How can i accomplish that? Can i define my custom function and then call it with the {!func}?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 PatternReplaceCharFilterFactory 它应该足够了。如果这还不够,您当然可以实现一个自定义 FilterFactory 来完成这项工作。
Have a look at the PatternReplaceCharFilterFactory it should be sufficient. If it is not sufficient you can implement of course a custom FilterFactory which does the job.