dk.brics.automaton 包线程安全吗?
Apache Lucene uses a modified form of the Brics automaton package. But is Brics thread safe?
More specifically, can it safely handle multiple, concurrent automaton instances from different threads - without blocking?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,从 RegExp 构造 Automaton 或 RunAutomaton 是线程安全的 - 除非您使用 setAllowMutate。
Yes, constructing an Automaton or a RunAutomaton from a RegExp is thread safe - unless you use setAllowMutate.
线程安全取决于你如何使用它,但我们使用它的方式不需要是线程安全的。
那是因为automatonquery的构造函数在内部将所有内容编译为完全不可变的形式。
thread safety depends upon how you use it, but the way in which we use it doesn't need to be thread safe.
thats because automatonquery's constructor compiles everything to a totally immutable form internally.