Created by: okamuuu
I use OptimalBits/bull
very useful library. My currency project required to store some data in the processing job queue. So I often write codes following.
job.data.foo = "bar"
job.update(job.data)
But I prefer following.
job.data.foo = "bar"
job.syncData()
As a matter of fact, the function is not essential, but I'm glad to consider this PR.