Franz Allan Valencia See <fran...@gmail.com>:
> One of the issues that was raised was concurrency. Pardon for the really
> stupid question, but is cmecab-java (or MeCab for that matter) can handle
> concurrent requests safely?
cmecab-java (and underlying MeCab library) is thread-safe as long as
each thread uses different Tagger instance.
It also applies to Tokenizers and Analyzers.
You may think it's too resource-consuming to have multiple tagger
instances, but it's not. MeCab effectively shares dictionary data
between tagger instances.
Regards,
Kohei Taketa