npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cache-engine-db

v1.0.20

Published

CacheEngineDB is a utility for caching asynchronous function results using MongoDB. It helps reduce redundant computations by storing and retrieving cached results based on function arguments, providing efficient and consistent caching mechanisms.

Downloads

26

Readme

CacheEngineDB

CacheEngineDB is a simple caching service for asynchronous methods using MongoDB. It ensures efficient caching by storing the results of function executions and retrieving them if they exist, saving the need for redundant computations.

Features

  • Connects to a MongoDB database and creates the necessary collection if it does not exist.
  • Ensures that the required indexes are created on the cache collection.
  • Provides a cache method to cache the results of asynchronous functions.
  • Fully typed with TypeScript.

Installation

You can install the package via npm:

npm install cache-engine-db

Usage Importing and Initializing

import { CacheEngineDB, ICacheEngineDBConnectOptions } from 'cache-engine-db';

// Define connection options
const options: ICacheEngineDBConnectOptions = {
  uri: 'your-mongodb-uri',
  dbName: 'your-database-name',
};

// Create an instance of CacheEngineDB
const cacheEngineDB = new CacheEngineDB();

// Connect to the database
await cacheEngineDB.connect(options);

Caching Function Results You can cache the results of an asynchronous function using the cache method:

const cachedResult = await cacheEngineDB.cache(
  {
    id: 'unique-function-identifier',
    fn: asyncFunction,
  },
  arg1,
  arg2
);

// Example usage
async function fetchData(param1: string, param2: number) {
  // Simulate an asynchronous operation
  return { data: `Result for ${param1} and ${param2}` };
}

const result = await cacheEngineDB.cache(
  {
    id: 'fetchData',
    fn: fetchData,
  },
  'testParam',
  123
);

console.log(result);

Methods

connect(options: ICacheEngineDBConnectOptions): Promise

Connects to the MongoDB database with the provided URI and database name. Creates the cache collection if it doesn't exist and ensures the required indexes are set up.

options: An object containing uri and dbName.

cache<T extends (...args: any[]) => any>(options: { id: string; fn: T }, ...args: Parameters): Promise<ReturnType>

Caches the result of the given asynchronous function. If the result is already cached, it returns the cached result.

options: An object containing id (a unique identifier for the function) and fn (the function to cache).

...args: The arguments to pass to the function.

Error Handling

Errors during connection, ensuring database and collection, ensuring indexes, and caching method execution are logged to the console.

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License.