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?

link|improve this question

38% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Yes, constructing an Automaton or a RunAutomaton from a RegExp is thread safe - unless you use setAllowMutate.

link|improve this answer
feedback

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.

link|improve this answer
I meant if the same compiled Automaton and then create multiple RunAutomaton instances - one in each thread and then run them concurrently? – Ashwin Jayaprakash Dec 8 '11 at 4:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.