Skip to content

NPM package for an atomic lock used for parallelism in node.js

Notifications You must be signed in to change notification settings

edwardjzhou/atomic-lock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

atomic-lock

Installation

npm install atomic-lock

Description

  1. Create a one-element int32 SharedArrayBuffer for the lock to use
  2. Share that SharedArrayBuffer via workerData with your nodejs worker threads
  3. Create atomic-lock instances with that SharedArrayBuffer in each worker thread
  4. Lock your critical section
  5. Unlock when finished

Example

const { Worker, workerData } = require("worker_threads")
const numThreads = 8
const sab = new Int32Array(new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT))
const result = new Int32Array(
  new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT)
)
let doneCount = 0
for (let i = 0; i < numThreads; i++) {
  const worker = new Worker(
    `
        const { workerData } = require('worker_threads')
        const { sab, result } = workerData
        const Lock = require('atomic-lock')
        const lock = new Lock(sab)
        for(let i = 0; i < 1_000_000; i++) {
            lock.lock()
            result[0] += 1
            lock.unlock()
        }
        `,
    { eval: true, workerData: { sab, result } }
  )
  worker.on("exit", (code) => {
    doneCount++
    if (doneCount === numThreads) {
      console.log(result) // 8,000,000
    }
  })
}

About

NPM package for an atomic lock used for parallelism in node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published