Git Product home page Git Product logo

cache-engine's Introduction

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.

cache-engine's People

Contributors

nirt04 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.