Is there an implementation of a thread-safe sorted collection in Python?
Python's docs reference SortedCollection but I'm not sure if it's thread-safe (is it?)
If there is no such implementation - how would you implement it?
| ||||
feedback
|
|
Looking through the code, it does not appear to be thread safe. To use it from multiple threads the application code that accesses it should be guarded with semaphore locks. If you want to make the SortedCollection class thread safe, you could write a decorator function. It would look something like this: SortedCollection:
EDIT Don't make the mistake of thinking that a threadsafe data structure will make your application code thread safe. If you perform multiple operations on a SortedCollection, all of those operations need to be guarded by a lock. Even if SortedCollection is threadsafe, the following code would not be:
It is possible that another thread could insert an item in between those 2 statements. You will need to guard within your application code. If you add this to your application code, you will not need to modify the SortedCollection to be thread safe.
| |||||||||||||||
feedback
|
|
The collections.OrderedDict class is not threadsafe for updates. You can do concurrent reads, but locks are needed for writes. For an example of how to use locks with OrderedDict, see the source for functools.lru_cache(). | |||
|
feedback
|
|
Python is different from Java: If a class has not specified its threading behavior in the docs, it is safe to assume that it is not thread-safe. Python is not written with threading in mind. Even today, multi threading is really a second class citizen as only a single thread is active at all times (which does not prevent most data race issues). It is called Global Interpreter Lock (GIL). If a class or a data structure is not build for concurrency, you have to protect access to it by an external lock | |||
feedback
|
|
You can use the heapq module to maintain a sorted list. By the power of the GIL all calls to C Extensions are atomic (in CPython, unless the extension explicitly releases the lock) and therefore
| |||||||
feedback
|