bag

Parallelizing list filtering

Parallelizing list filtering Question: I have a list of items that I need to filter based on some conditions. I’m wondering whether Dask could do this filtering in parallel, as the list is very long (a few dozen million records). Basically, what I need to do is this: items = [ {‘type’: ‘dog’, ‘weight’: 10}, …

Total answers: 1