http://www.ngcrawford.com/2012/03/29/python-multiprocessing-large-files/ I want to create a dictionary of a large text file using multiprocessing and I found this.But I have some questions about the parameters that author uses in this code:
p = multiprocessing.Pool(4)
what's the parameter of Pool? In other words, what does "4" mean?
for chunk in grouper(10, test_data):
what does "10" mean