Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

mbench

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mbench

Micro benchmarking

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

mpool

This library provides a simple object pool implementation.

Usage

import { Pool } from "mpool";

class Thing {}
const pool = new Pool(() => new Thing);

const obj = pool.get();
use(obj);
pool.put(obj);

Why does the Pool accept a callback? It greatly simplifies the library's role: It doesn't have to handle pooled object initialization. Here is the recommended approach in case your objects require initialization:

import { Pool } from "mpool";

class Thing {
    public value!: number;

    init(value: number): this {
        this.value = value;
        return this;
    }
}

const pool = new Pool(() => new Thing);
// When acquiring an object, explicitly initialize it:
const obj = pool.get().init(100);
use(obj);
pool.put(obj);

It's a little more boilerplate, but it ensures that your objects are easily reusable. The library could handle this for you, but it wouldn't be as versatile and could potentially cause some uncomfortable limitations, such as requiring init and free functions to exist.

The pool is unbounded, meaning that the pool never discards objects. Every object you .put() into the pool is stored there until you .get() it again. This does mean that memory usage will only ever go up. However, the pool also contains a .fit() method, which shrinks the pool to pool.preferredSize objects, if there are more than pool.preferredSize objects in the pool.

import { Pool } from "mpool";

class Thing {}

const pool = new Pool(() => new Thing, /* preferred pool size */ 5);
console.log(pool.length); // 5
pool.put(new Thing);
console.log(pool.length); // 6
pool.fit();
console.log(pool.length); // 5 <- pool has shrunk to our preferred pool size

The shrinking happens by creating a new internal storage and moving all the objects into it. This means that the old array is free for garbage collection, so it does truly lead to a memory usage decrease, whenever a GC cycle happens.

Keywords

bench

FAQs

Package last updated on 21 Jun 2021

Did you know?

Socket

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.

Install

Related posts