FlushableSet
A drop-in replacement of the native Set with an optional max size and a flush
callback.
Usage
import { FlushableSet } from "@vicary/flushable-set";
const set = new FlushableSet(null, {
maxSize: 3,
onFlush() {
console.log("Flushing items", Array.from(this));
},
});
for (let i = 0; i < 10; i++) {
set.add(i);
}
Asynchronous flush is supported with promise mutex, this comes in handy for
database insertion from an external stream.
const chunk = new FlushableSet(null, {
maxSize: 100,
async onFlush() {
await db.insertMany(Array.from(this));
},
});
for await (const row of dataStream) {
await chunk.addAsync(row);
}
await chunk.flush();
Contributing
If you find a bug or would like to suggest a new feature, please open an issue
or submit a pull request on GitHub.
License
FlushableSet is licensed under the MIT License. See the LICENSE file for more
information.
Funding
If you find this project useful, please consider supporting it by donating to
the author.