# @purista/redis-config-store API

Redis adapter for PURISTA config values.

---
Canonical: /handbook/api/modules/_purista_redis-config-store/
Format: Markdown for agents
---

Redis adapter for PURISTA config values.

Package: `@purista/redis-config-store`

## Signature

```typescript
@purista/redis-config-store
```

## Examples

```typescript
const store = new RedisConfigStore({
  config: { url: 'redis://localhost:6379' },
})

await store.setConfig('tenant:acme:prod:app:features', { checkout: true })
const config = await store.getConfig('tenant:acme:prod:app:features')
```

## Members

### Classes

- `class RedisConfigStore<M, F, S>` — Config store backed by Redis string keys.

### Type Aliases

- `type RedisStoreConfig = void` — Redis config store backend configuration.

### Variables

- `const puristaVersion: "3.0.1"` — The PURISTA package version embedded in the published runtime build.
