Gathering detailed insights and metrics for async-sema
Gathering detailed insights and metrics for async-sema
Gathering detailed insights and metrics for async-sema
Gathering detailed insights and metrics for async-sema
@nixjs23n6/async-sema
Semaphore using `async` and `await`
semaphore-async-await
A promise-based semaphore implementation suitable to be used with async/await.
@esfx/async-semaphore
Provides 'AsyncSemaphore', an async coordination primitive.
@esutils/async-semaphore
A minimal async semaphore library that implemented in `typescript`
npm install async-sema
Typescript
Module System
Node Version
NPM Version
99.6
Supply Chain
100
Quality
83.2
Maintenance
100
Vulnerability
100
License
TypeScript (100%)
Total Downloads
188,817,445
Last Day
454,318
Last Week
2,364,923
Last Month
10,558,226
Last Year
94,827,820
MIT License
637 Stars
68 Commits
31 Forks
62 Watchers
1 Branches
84 Contributors
Updated on Feb 24, 2025
Minified
Minified + Gzipped
Latest Version
3.1.1
Package Id
async-sema@3.1.1
Size
5.14 kB
NPM Version
6.14.11
Node Version
14.16.0
Published on
Aug 17, 2021
Cumulative downloads
Total Downloads
Last Day
32.3%
454,318
Compared to previous day
Last Week
12.8%
2,364,923
Compared to previous week
Last Month
-9.6%
10,558,226
Compared to previous month
Last Year
113.2%
94,827,820
Compared to previous year
This is a semaphore implementation for use with async
and await
. The
implementation follows the traditional definition of a semaphore rather than the
definition of an asynchronous semaphore seen in some js community examples.
Where as the latter one generally allows every defined task to proceed
immediately and synchronizes at the end, async-sema allows only a selected
number of tasks to proceed at once while the rest will remain waiting.
Async-sema manages the semaphore count as a list of tokens instead of a single
variable containing the number of available resources. This enables an
interesting application of managing the actual resources with the semaphore
object itself. To make it practical the constructor for Sema includes an option
for providing an init function for the semaphore tokens. Use of a custom token
initializer is demonstrated in examples/pooling.js
.
Firstly, add the package to your project's dependencies
:
1npm install --save async-sema
or
1yarn add async-sema
Then start using it like shown in the following example. Check more use case examples here.
1const { Sema } = require('async-sema'); 2const s = new Sema( 3 4, // Allow 4 concurrent async calls 4 { 5 capacity: 100 // Prealloc space for 100 tokens 6 } 7); 8 9async function fetchData(x) { 10 await s.acquire() 11 try { 12 console.log(s.nrWaiting() + ' calls to fetch are waiting') 13 // ... do some async stuff with x 14 } finally { 15 s.release(); 16 } 17} 18 19const data = await Promise.all(array.map(fetchData));
The package also offers a simple rate limiter utilizing the semaphore implementation.
1const { RateLimit } = require('async-sema'); 2 3async function f() { 4 const lim = RateLimit(5); // rps 5 6 for (let i = 0; i < n; i++) { 7 await lim(); 8 // ... do something async 9 } 10}
Creates a semaphore object. The first argument is mandatory and the second argument is optional.
nr
The maximum number of callers allowed to acquire the semaphore
concurrently.initFn
Function that is used to initialize the tokens used to manage
the semaphore. The default is () => '1'
.pauseFn
An optional fuction that is called to opportunistically request
pausing the the incoming stream of data, instead of piling up waiting
promises and possibly running out of memory.
See examples/pausing.js.resumeFn
An optional function that is called when there is room again
to accept new waiters on the semaphore. This function must be declared
if a pauseFn
is declared.capacity
Sets the size of the preallocated waiting list inside the
semaphore. This is typically used by high performance where the developer
can make a rough estimate of the number of concurrent users of a semaphore.Drains the semaphore and returns all the initialized tokens in an array. Draining is an ideal way to ensure there are no pending async tasks, for example before a process will terminate.
Returns the number of callers waiting on the semaphore, i.e. the number of pending promises.
Attempt to acquire a token from the semaphore, if one is available immediately.
Otherwise, return undefined
.
Acquire a token from the semaphore, thus decrement the number of available
execution slots. If initFn
is not used then the return value of the function
can be discarded.
Release the semaphore, thus increment the number of free execution slots. If
initFn
is used then the token
returned by acquire()
should be given as
an argument when calling this function.
Creates a rate limiter function that blocks with a promise whenever the rate
limit is hit and resolves the promise once the call rate is within the limit
set by rps
. The second argument is optional.
The timeUnit
is an optional argument setting the width of the rate limiting
window in milliseconds. The default timeUnit
is 1000 ms
, therefore making
the rps
argument act as requests per second limit.
The uniformDistribution
argument enforces a discrete uniform distribution over
time, instead of the default that allows hitting the function rps
time and
then pausing for timeWindow
milliseconds. Setting the uniformDistribution
option is mainly useful in a situation where the flow of rate limit function
calls is continuous and and occuring faster than timeUnit
(e.g. reading a
file) and not enabling it would cause the maximum number of calls to resolve
immediately (thus exhaust the limit immediately) and therefore the next bunch
calls would need to wait for timeWindow
milliseconds. However if the flow is
sparse then this option may make the
code run slower with no advantages.
cd async-sema
npm link
Inside the project where you want to test your clone of the package, you can now either use npm link async-sema
to link the clone to the local dependencies.
Olli Vanhoja (@OVanhoja)
No vulnerabilities found.
No security vulnerabilities found.