Advantage in parallel processing
As you know, Go was originally created for parallel processing.
Our team often needs parallel processing programs to process large amounts of data in S3 and databases.
If the task is IO intensive, Python threads can help. However, for tasks that are CPU intensive, Python is difficult in terms of global interpreter locks.
I enjoy the simple way that multithreaded Go works without any special effort. Did you have any problems using Ctrl-C with multithreaded Python?
0 コメント:
コメントを投稿