A caching adapter for @epic-web/cachified that supports redis-json (RedisJSON module). Version 2.0.0 is the current stable release, actively maintained by a single contributor. It provides a drop-in replacement for the built-in Redis adapter when you need to store cached JSON documents natively in Redis using the RedisJSON module, enabling partial updates and nested field retrieval. Ships TypeScript definitions.
npm install cachified-redis-json-adapterNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a RedisJSON cache adapter and uses it with cachified to cache a JSON object.
Use redisJsonCacheAdapter instead of createRedisJsonCache.
Switch to ESM imports in your project, or use dynamic import() in CJS.
Replace createRedisJsonCache with redisJsonCacheAdapter.
Ensure the Redis server has the RedisJSON module installed and the client is connected before passing it.
Use import { redisJsonCacheAdapter } from 'cachified-redis-json-adapter' or switch to dynamic import.Convert your project to ESM or use import() inside an async function.
Run npm install cachified-redis-json-adapter @epic-web/cachified redis (or appropriate package manager).