I have a large python array (and by array I mean a list that is initialized to a certain size by doing [None] * 1000) that will be accessed by multiple threads. No 2 threads will ever access the same index. Do I need any sort of concurrency control? I’m guessing not since there’s no threat of overwriting values? Thanks!
Share
Between having no shared array elements between threads and the GIL, you’re good.