# @biscuitland/cache
## Most importantly, biscuit's cache is:
A resource control cache layer, based on carriers and resource-intensive policies
[
](https://github.com/oasisjs/biscuit)
[
](https://discord.gg/XNw2RZFzaP)
## Install (for [node18](https://nodejs.org/en/download/))
```sh-session
npm install @biscuitland/cache
```
## Example (Basic)
```ts
import { Cache, MemoryCacheAdapter } from '@biscuitland/cache';
const bootstrap = async () => {
const cache = new Cache({
adapter: new MemoryCacheAdapter(),
});
// You can listen to the raw biscuit event
cache.start();
};
bootstrap();
```
## Links
- [Documentation](https://docs.biscuitjs.com/)
- [Website](https://biscuitjs.com/)