如何独立使用 solr.analysis.WordDelimiterFilter
在这一点上,我很确定我已经搜索了足够多的内容,但我找不到一个很好的例子来说明如何使用这门课。
我一直在寻找一组好的分词器,当然 solr/lucene 集合 是我发现的(到目前为止)
现在我正在寻找使用此分词器的一个很好的示例,有什么好的网站/文档可以让我找到这样的东西吗?
附:也许另一组/标记器库可能会有所帮助
At this point I'm pretty sure I've searched enough and I can't find a nice example of how put to work this class.
I've been looking for a good set of tokenizers and of course the solr/lucene collection is what I found (so far)
Now I'm looking for a good example of the use of this tokenizer, is there any good site/doc where I can find something like this?
ps. Maybe another set/library of tokeninzers might help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是如何将该类用作独立类?
如果是这样,测试用例将是寻找用法的最佳位置,例如
http://svn.apache.org/repos/asf/lucene/dev/branches/lucene_solr_3_3/solr/src/test/org/apache/solr/analysis/TestWordDelimiterFilter.java
Lucene带有 Tokenizers 的变体和过滤器。
而且您几乎可以单独使用这些课程。
如果我完全无法满足您的需求,请告诉我。
Do you mean how to use the class as a standalone class ?
If so, the testcases would the best place to look for the usage e.g.
http://svn.apache.org/repos/asf/lucene/dev/branches/lucene_solr_3_3/solr/src/test/org/apache/solr/analysis/TestWordDelimiterFilter.java
Lucene comes with a variation of Tokenizers and filters.
And you and pretty much use the classes stand alone.
Let me know if i am totally off what you need.