Skip to content
On this page

This is an auto-generated document to support extension builders understand the internal packages they can utilize. To find our written guides, tutorials, and API/SDK reference, check out our main docs .

Directus / @directus/memory / index / KvConfigRedis

Interface: KvConfigRedis

Extends

Properties

compression?

optional compression: boolean

Enable Gzip compression

Default

ts
true
true

Source

packages/memory/src/kv/types/config.ts:39


compressionMinSize?

optional compressionMinSize: number

Minimum byte size of the value before compression is enabled.

There's a trade-off in size versus time spent compressing values with Gzip. For values lower than ~1k in byte size, the juice isn't worth the squeeze

Default

ts
1000
1000

Source

packages/memory/src/kv/types/config.ts:49


namespace

namespace: string

Used to prefix the keys

Source

packages/memory/src/kv/types/config.ts:32


redis

redis: Redis | ExtendedRedis

Existing or new Redis connection to use with this memory class

Source

packages/memory/src/kv/types/config.ts:54


type

type: "redis"

Where the data is stored

local - Local memory redis - Redis instance

Overrides

KvConfigAbstract.type

Source

packages/memory/src/kv/types/config.ts:27