msgpack.fallback.Packer.pack is not thread safe while the cython implementation seems to be by acquiring GIL. This may be a difference at least worth mentioning somewhere.
The text was updated successfully, but these errors were encountered:
Like many classes in Python stdlib, it's is not thread safe unless it's documented as "thread safe"
explicitly. Even if Cython implementation is thread safe (I don't confirmed it yet), it's implementation detail.
You must use Cython implementation in single thread, or use mutex too.
msgpack.fallback.Packer.pack is not thread safe while the cython implementation seems to be by acquiring GIL. This may be a difference at least worth mentioning somewhere.
The text was updated successfully, but these errors were encountered: