Socket
Socket
Sign inDemoInstall

@algolia/cache-common

Package Overview
Dependencies
0
Maintainers
3
Versions
74
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @algolia/cache-common

Common interfaces for promise-based caching libraries


Version published
Weekly downloads
1.1M
decreased by-23.77%
Maintainers
3
Install size
5.45 kB
Created
Weekly downloads
 

Package description

What is @algolia/cache-common?

The @algolia/cache-common package is part of the Algolia ecosystem, designed to provide a common interface and utility functions for implementing caching mechanisms. This package is typically used to enhance performance by reducing the number of API calls needed, thereby saving bandwidth and speeding up response times by storing and retrieving data from a cache.

What are @algolia/cache-common's main functionalities?

Cache Interface

Defines a standard interface for cache operations including setting, getting, and deleting cache entries. This interface ensures consistency across different implementations of caches used in various Algolia libraries.

{
  set(key, value) {
    // implementation code
  },
  get(key) {
    // implementation code
  },
  delete(key) {
    // implementation code
  }
}

InMemoryCache

Provides a basic in-memory cache implementation that can be used to store data within the process memory. Useful for environments where installing external caching systems is not feasible.

const { InMemoryCache } = require('@algolia/cache-common');
const cache = new InMemoryCache();
cache.set('key', 'value').then(() => {
  return cache.get('key');
}).then(value => console.log(value));

Other packages similar to @algolia/cache-common

Changelog

Source

v4.23.2

  • fix(recommend): only export default function (#1514) (4a04d8e), closes #1514

FAQs

Last updated on 27 Mar 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc