-
In Python's ecosystem this is far from a guaranteed behavior unfortunately. Is it the case ? Or should we use a |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yes, both Rust and pure Python implementations are thread-safe. They use thread-safe data structures internally, so you can use a single If you encounter any problems, then please open an issue with code to reproduce. |
Beta Was this translation helpful? Give feedback.
-
Thanks this is great! |
Beta Was this translation helpful? Give feedback.
Yes, both Rust and pure Python implementations are thread-safe. They use thread-safe data structures internally, so you can use a single
LanguageDetector
instance from multiple threads.If you encounter any problems, then please open an issue with code to reproduce.