Tagged Questions
1
vote
3answers
635 views
How can I multiprocess my program?
I wrote a program which scrape internet sites. It is pretty straigtforward because it process link one by one.
With the limiting factor of the internet speed, the process is rather slow.
I wonder, ...
20
votes
4answers
2k views
Should I stick with or abandon Python to deal with concurrency?
I have a 10K LOC project written in Django with quite a deal of Celery (RabbitMQ) for asynchronicity and background jobs where needed, and have come to the conclusion that parts of the system would ...
4
votes
2answers
1k views
Python threading vs. multiprocessing: Should I learn one before the other?
I'm looking to dive into multithreading or multiprocessing in Python. Question: should I be learning one before the other (for any reason)? If so, which one and why?
I've read the pro's and con's in ...