@bul/pool
v1.0.1
Published
Queue & throttle async tasks in pool
Downloads
1
Readme
Pool
When we have too much tasks in parallel, pool
is simple way to queue & throttle tasks efficiently.
Usage
Example: We have a lot urls to fetch data, doing ALL in parallel may hang our computer
Steps:
- Decide pool's size. Ex: 5
- Push async task & args into pool
- Wait for pool idle & get result
import Pool from '@bul/pool';
import fetch from 'isomorphic-fetch';
const runDemo = async () => {
// Simple async task
const demoAsyncTask = url =>
fetch(url)
.then(res => res.text())
.catch(console.log);
const urls = [
'https://google.com', //
'https://medium.com',
'https://github.com',
/* other urls */
];
// 1. Create pool
const pool = Pool(5);
// 2. Push async task into pool
urls.map(url => pool.push(demoAsyncTask, url /* Pass ALL async tasks' args here */));
// 3.1 Wait for pool idle
await pool.idle();
// 3.2 Get result after all async tasks done
return pool.getResult();
};
runDemo()
.then(console.log)
.catch(console.log);