> ## Documentation Index
> Fetch the complete documentation index at: https://llm-tools.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Redis

You can use redis as a data store.

## Install Redis addon

```bash theme={null}
npm install @llm-tools/embedjs-redis
```

## Usage

<CodeGroup>
  ```ts Partial example theme={null}
  import { RAGApplicationBuilder } from '@llm-tools/embedjs';
  import { RedisStore } from '@llm-tools/embedjs-redis';

  const app = await new RAGApplicationBuilder()
  .setStore(new RedisStore({ ... }))
  ```
</CodeGroup>

<Snippet file="missing-store-tip.mdx" />
