
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
bounded-queue
Advanced tools
Bounded batch queue, where items are produced and consumed based on user specified functions
bounded-queue
helps solves the producer–consumer problem.
graph LR;
P(Producer);
B[bounded-queue];
C(Consumer);
P-- batched item -->B;
B-- batched item -->C;
style B fill:#99E,stroke:#333
The bounded-queue
allows the producer and consumer to operate in
Imagine you have to read records from a database and write those to another database. A simple way to that move the records is to first read from database A and sequentially write each record to database B.
let batchNr = 0;
let items2produce = 10;
/**
* Mockup database A, producer
*/
const dbA = {
readRecord: async () => {
++batchNr;
console.log("Producing batch #", batchNr);
await new Promise(resolve => setTimeout(resolve, 100));
console.log("Produced batch #", batchNr);
return batchNr;
},
moreRecordsAvailable: () => batchNr < items2produce
}
/**
* Mockup database B, consumer
*/
const dbB = {
async writeRecord(batchNr) {
console.log("Consuming batch #", batchNr);
await new Promise(resolve => setTimeout(resolve, 100));
console.log("Consumed batch #", batchNr);
}
}
/**
* Sequential conversion
*/
async function convertDatabaseRecords() {
while(dbA.moreRecordsAvailable()) {
const record = await dbA.readRecord();
// Consumer
await dbB.writeRecord(record); // expensive async write (consume) operation
}
}
(async () => {
console.time("no-queue");
await convertDatabaseRecords();
console.timeEnd("no-queue");
})();
In the previous example, we either read from database A, or write to database B.
It would be faster if read from database A, while we write to database B, at the same time.
As dbA.readRecord()
and dbB.readRecord()are
async` functions, there is no need to introduce threading to accomplish that.
The bounded-queue
helps you with that. The following example uses bounded-queue
, with a maximum of 3 queued records:
import {queue} from 'bounded-queue';
let batchNr = 0;
let items2produce = 10;
/**
* Mockup database A, producer
*/
const dbA = {
readRecord: async () => {
++batchNr;
console.log("Producing batch #", batchNr);
await new Promise(resolve => setTimeout(resolve, 100));
console.log("Produced batch #", batchNr);
return batchNr;
},
moreRecordsAvailable: () => batchNr < items2produce
}
/**
* Mockup database B, consumer
*/
const dbB = {
async writeRecord(batchNr) {
console.log("Consuming batch #", batchNr);
await new Promise(resolve => setTimeout(resolve, 100));
console.log("Consumed batch #", batchNr);
}
}
/**
* Conversion using bounded-queue
*/
async function convertDatabaseRecords() {
await queue(3, () => {
// Producer
return dbA.moreRecordsAvailable() ? dbA.readRecord() : null; // expenive async read (produce) operation
}, record => {
// Consumer
return dbB.writeRecord(record); // expensive async write (consume) operation
});
}
(async () => {
console.time("bounded-queue");
await convertDatabaseRecords();
console.timeEnd("bounded-queue");
})();
Using the bounded-queue, the conversion will complete in roughly half the time.
npm install bounded-queue
constructor(maxQueueSize: number, producer: Producer<ItemType>, consumer: Consumer<ItemType>)
maxQueueSize
(number): Maximum number of items that can be in the queue.producer
(Producer): A function that produces items to be added to the queue.consumer
(Consumer): A function that consumes items from the queue.BoundedQueue
instance with the specified maxQueueSize
, producer
, and consumer
.length(): number
run(): Promise<void>
producer
function and concurrently consumes items using the consumer
function.import { queue } from 'your-module';
// Create and run a BoundedQueue with a maximum queue size of 10
queue(10, producer, consumer)
.then(() => {
console.log('Queue processing completed');
})
.catch((error) => {
console.error('Error during queue processing:', error);
});
queue<ItemType>(maxQueueSize: number, producer: Producer<ItemType>, consumer: Consumer<ItemType>): Promise<void>
maxQueueSize
(number): Maximum number of items that can be in the queue.producer
(Producer): A function that produces items to be added to the queue.consumer
(Consumer): A function that consumes items from the queue.BoundedQueue
instance. It takes the same parameters as the BoundedQueue
constructor and returns a Promise that resolves when all items have been produced and consumed.null
indicated the end of the production.import { queue } from 'your-module';
// Create and run a BoundedQueue with a maximum queue size of 10
queue(10, producer, consumer)
.then(() => {
console.log('Queue processing completed');
})
.catch((error) => {
console.error('Error during queue processing:', error);
});
FAQs
Bounded batch queue, where items are produced and consumed based on user specified functions
The npm package bounded-queue receives a total of 0 weekly downloads. As such, bounded-queue popularity was classified as not popular.
We found that bounded-queue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.