npm.io
1.2.0 • Published 5 years ago

@jacobbubu/meta-job-list

Licence
MIT
Version
1.2.0
Deps
4
Size
35 kB
Vulns
0
Weekly
0

@jacobbubu/meta-job-list

Build Status Coverage Status npm

Combine JobList and MergedModel to implement a JobList that cleans up jobs based on the number of how many peers been synced.

Intro.

I use a MergedModel to keep track of how many peers have synced for each job, so I can boldly delete the job.

MetaJobList is a class that combine a jobList and a mergedModel that used to store meta data.

CappedJobList is more like an example to show how to use MetaJobList. it shows how to set a sync threshold. When the number of peers synced to a job reaches this threshold, we delete the job and applyUpdate will not accept any further updates to the job.

Please use the example to understand how this logic works.