←back to thread

259 points rbanffy | 2 comments | | HN request time: 0.601s | source
1. heybrendan ◴[] No.44004437[source]
I am a Python user, but far from an expert. Occasionally, I've used 'concurrent.futures' to kick off running some very simple functions, at the same time.

How are 'concurrent.futures' users impacted? What will I need to change moving forward?

replies(1): >>44005659 #
2. rednafi ◴[] No.44005659[source]
It’s going to get faster since threads won’t be locked on GIL. If you’re locking shared objects correctly or not using them all, then you should be good.