nabicht / SimpleTaskQueue

A simple task queue used for coordinating distributed, parallel work.
4 stars 0 forks source link

dependency determination could become slow in system with lots of tasks #64

Open nabicht opened 6 years ago

nabicht commented 6 years ago

Right now figuring out what a task has dependencies is a brute force lookup every time. This could become a pretty slow thing if we had huge amounts of tasks. Could probably automate this a bit more and track it better.