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 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-redis-cache

v1.0.1

Published

A Redis-like cache for React with Redux integration, TTL, eviction policies, Pub/Sub, and async API caching

Readme

react-redis-cache

A Redis-like cache implementation for React with deep Redux integration, supporting TTL, eviction policies, data structures (Lists, Sets, Hashes), Pub/Sub, async API caching, persistence, and logging.

It works seamlessly across memory, localStorage, sessionStorage, and IndexedDB, making it a powerful choice for caching both UI state and API data in modern React applications.


Features

| Feature | Description | |----------------------|-------------| | TTL / Expiry | Set time-to-live for cached items. Expired items are auto-removed. | | Eviction Policies| Supports LRU, LFU, and FIFO eviction when cache exceeds size limit. | | Pause / Resume / Skip | Temporarily pause cache reads or skip next retrieval. | | Pub/Sub | Subscribe to changes on cache keys or channels. | | Data Structures | Lists, Sets, and Hashes, similar to Redis. | | Async API Caching| getOrFetch automatically fetches & caches API results. | | Redux Integration| Auto-cache Redux slices, update on specific actions. | | Logging | Optional internal logging (enable/disable). | | Persistence | Supports memory, localStorage, sessionStorage, and IndexedDB for reload persistence & large datasets. |


Installation

npm install react-redis-cache

Usage Example

import { ReactRedisCache } from "react-redis-cache";
import { store } from "./reduxStore";

const cache = new ReactRedisCache({
  enableLogging: true,
  evictionPolicy: "LRU",
  mechanism: "indexedDB", // uses IndexedDB persistence
  reduxConfig: {
    store,
    stateKey: "user",
    actionsToWatch: ["UPDATE_USER", "LOGOUT"],
    keyFn: (user) => `user:${user.id}`,
    ttl: 60000 // 1 minute TTL
  }
});

// Async get (IndexedDB returns Promise)
const cachedUser = await cache.get("user:123");

// Async API caching
const data = await cache.getOrFetch("posts", async () => {
  const res = await fetch("/api/posts");
  return await res.json();
}, 30000); // cache for 30s

// Pub/Sub
cache.subscribe("user:123", (updatedUser) =>
  console.log("User updated", updatedUser)
);

API Reference

Core Methods

  • set(key, value, ttl?) → Promise
  • get(key) → Promise
  • del(key) → Promise
  • flushall() → Promise
  • flushByDate(date | number) → Promise
  • pause() → void
  • resume() → void
  • skipNext(key) → void

Pub/Sub

  • publish(channel, data) → void
  • subscribe(channel, fn) → void
  • unsubscribe(channel, fn?) → void

Data Structures

  • Lists: lpush, rpush, lpop, rpop, lrange
  • Sets: sadd, srem, smembers
  • Hashes: hset, hget, hgetall

Async API Caching

  • getOrFetch(key, fetcher, ttl?) → Promise

Redux Integration

reduxConfig: {
  store,                 // Redux store instance
  stateKey: "user",      // Slice key in state
  actionsToWatch: ["UPDATE_USER"], // List of actions to trigger cache update
  keyFn: (slice) => `user:${slice.id}`, // Cache key generator
  ttl: 60000             // TTL in ms
}

Persistence Mechanisms

| Mechanism | Description | |-----------------|-------------| | memory | In-memory cache. Cleared on reload. | | localStorage| Browser localStorage persistence. | | sessionStorage | Session-only persistence. | | indexedDB | Large dataset persistence across reloads. |


Notes

  • IndexedDB operations are asyncget returns a Promise.
  • Eviction policy triggers when cache exceeds 1000 entries (configurable).
  • Logging is optional with enableLogging: true.
  • TTL values are in milliseconds.