pooler
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

Pooler

npm npm downloads GitHub issues Travis Coverage Status GitHub license

A generic pooling interface and TypeScript/JavaScript implementation.

The interface

The heart of pooler is the interface. The interface is largely taken from the Go standard library where the two key methods are get and put.

Unique to this library is the method use. The use method is a convenience feature that abstracts the logic of both get and put by passing in a callback to be executed with a value from the pool. This is especially nice for making single queries to a database. It removes the need for a lot of boilerplate code, and also removes the possibility you forget to put the value back in the pool.

Note that the factory function implements an equal jitter exponential backoff for retrying resource creation.

pooler interface

Basic Usage

To get started, created a pooler from the implementation's option object.

basic usage with database

Dependencies (0)

    Dev Dependencies (10)

    Package Sidebar

    Install

    npm i pooler

    Weekly Downloads

    0

    Version

    2.0.0

    License

    MIT

    Unpacked Size

    28.5 kB

    Total Files

    19

    Last publish

    Collaborators

    • alexsasharegan