Fastest way to process a large file?
It sounds like your code is I/O bound. This means that multiprocessing isn’t going to help—if you spend 90% of your time reading from disk, having an extra 7 processes waiting on the next read isn’t going to help anything. And, while using a CSV reading module (whether the stdlib’s csv or something like NumPy … Read more