如何删除 lucene.net 中的连字符标记
我在搜索时遇到连字符问题。我认为这是因为我使用的标准分析器。
如何删除该连字符作为标准分析器标记的一部分?
I'm having problem with hyphen when searching. I thinks its because of the Standard Analyzer that I use.
How can I remove that hypen as part of the standard analyzer tokens?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
StandardAnalyzer
确实用连字符分解单词。您正在对什么类型的数据建立索引?你能把分析仪换成其他的吗?KeywordAnalyzer
根本不会分解单词,而WhitespaceAnalyzer
只会在空白字符(空格、换行符、制表符等)上分解。您可以使用
PerFieldAnalyzerWrapper
如果您需要在文档/查询中使用多个分析器。The
StandardAnalyzer
does indeed break up words with hyphens. What type of data are you indexing? Can you change the analyzer to something else? TheKeywordAnalyzer
wont break up words at all, and theWhitespaceAnalyzer
will only break on whitespace characters (spaces, newlines, tabs, ...)You can use the
PerFieldAnalyzerWrapper
if you need to use several analyzers within a document/query.自定义分词器将符合您的标准。
请参考,http://karticles.com/NoSql/lucene_custom_tokenizer.html
Custom Tokenizer would fit your criteria.
Please refer, http://karticles.com/NoSql/lucene_custom_tokenizer.html