## Most importantly, potoland's cache is:
npm install @potoland/cacheA resource control cache layer, based on carriers and resource-intensive
policies
![]()
``sh-session`
npm install @potoland/cache
`ts
import { Cache, RedisAdapter } from '@potoland/cache';
import Redis from 'ioredis';
const bootstrap = async () => {
const cache = new Cache(new RedisAdapter({ client: new Redis() }));
// You can listen to the raw potocuit event
await cache.onPacket(
};
bootstrap();
``