I have a list operation where i need to loop through a list, identify an item, and build a dictionary, what's the best multiprocessing way to do this? the list is rather long with over 1M items.
result_dict = dict()
for id in list_a:
if id not in check_list: #black_list for verfication
result_dict[id]= func_buildup(id) # function to build up value