Multiprocessing
Parallel Processing
i recently read an article about parallel processing. i remembered my domain checker service which checks a lot of domains for their availablitly, and this script runs sequentiel and needs around 30 seconds.
initially i worked on a caching mechanism to speed up results. but if a service is not used that often (nobody is useing my domain checker…), there is not much you can gain with caching.
so, i gave a try with Multiprocessing and i have to admit i’m prettyhappy with the result !