Concurrency Programming in Python
I am going to use this as my reference : Super Fast Python
For a while now, I have been in situations where it is crucial for me to write fast python programs. It has come to the stage where sequential processing of instructions just won't cut it anymore, as a result I have started writing concurrent/parallel programs in python
This page will contain my notes on writing parallel code in python
When it comes to writing parallel code in python there are three main inter-related topics
- Concurrent Programming
- Parallel Programming
- Asynchronous Programming