I am doing twitter mining where I am dealing with large amount of data .I am getting Memory error in my below code -
ids_str = ','.join([str(_id) for _id in ids[:100]])
ids = ids[100:] <--------- this point has memory error .
where ids dict has around 12.5 Million entries . what could be the issue here could you please suggest.?