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

turbo-cache-provider

v2.0.3

Published

Adaptive caching library for client-side optimization in SPA applications.

Downloads

308

Readme

AdaptiveCache

Description

AdaptiveCache is a highly efficient library for adaptive caching, specifically designed for Single-Page Applications (SPA). It aims to enhance application performance through intelligent caching mechanisms, including dynamic Time-to-Live (TTL) calculation, adaptive cache size adjustments, and support for various replacement policies.


Features

  1. Dynamic TTL Calculation: Adjusts TTL based on access frequency using a Poisson distribution model.
  2. Adaptive Cache Resizing: Dynamically adjusts cache size based on workload and hit rate.
  3. Customizable Replacement Policies: Supports FIFO, LRU, and LFU caching policies.
  4. Metrics Tracking: Optionally tracks hit rates, latency, and error rates for performance analysis.
  5. Seamless Integration: Easily integrates with modern JavaScript frameworks like React, Angular, and Vue.

Installation

Install the package via npm:

npm install adaptive-cache

yarn add adaptive-cache

Usage

Basic Usage

const AdaptiveCache = require('adaptive-cache');

// Initialize the cache with a limit of 100 items and global TTL of 1 minute
const cache = new AdaptiveCache({
    limit: 100,
    globalTTL: 60000,
    policy: 'LRU',
    enableMetrics: true,
});

// Fetch data with a 'cache-first' policy
const fetchData = async (key) => {
    return cache.fetchWithPolicy(
        key,
        async () => {
            // Simulate fetching data from a network
            return await fetchFromNetwork(key);
        },
        'cache-first',
        120 // Access frequency
    );
};

Advanced Usage

Dynamic TTL Calculation The TTL is dynamically calculated based on access frequency using a Poisson-based probability model. This ensures optimal caching for frequently accessed data.

cache.setWithAdaptiveTTL('key', 'value', 150);

Cache Resizing

The cache automatically adjusts its size based on hit rates and system load.

Custom Replacement Policies

Choose between FIFO, LRU, and LFU policies when initializing the cache.

const cache = new AdaptiveCache({
    policy: 'LFU',
});

API

Constructor

new AdaptiveCache(options)

  • limit (number): Maximum number of items in the cache.
  • globalTTL (number): Default TTL for cached items in milliseconds.
  • policy (string): Replacement policy (FIFO, LRU, or LFU).
  • enableMetrics (boolean): Enable or disable metrics tracking.

fetchWithPolicy(key, fetchFunction, fetchPolicy, accessFrequency, options) - Fetch data with a specified policy.

get(key) - Retrieve an item from the cache.

setWithAdaptiveTTL(key, value, accessFrequency) - Store an item in the cache with a calculated TTL.

getMetrics() - Retrieve current cache metrics (if enabled).

clear() - Clear all items from the cache.