Config Keys
This list is generated from module default configuration files.
| Key | Default | Environment | Description | Source |
|---|---|---|---|---|
cache.driver | "memory" | CACHE_DRIVER | Cache driver to use: `memory`, `file`, or `redis`. Install the required peer dependency for non-memory drivers: - `file`: no extra packages needed. - `redis`: requires `ioredis`. / | cache.ts |
cache.defaultTtlMs | 0, | — | Configuration value. | cache.ts |
cache.file | — | — | Configuration value. | cache.ts |
cache.file.folder | ".cache" | CACHE_FILE_FOLDER | Configuration value. | cache.ts |
cache.redis | — | — | Configuration value. | cache.ts |
cache.redis.host | "127.0.0.1" | CACHE_REDIS_HOST | Configuration value. | cache.ts |
cache.redis.port | 6379 | CACHE_REDIS_PORT | Configuration value. | cache.ts |
cache.redis.password | "" | CACHE_REDIS_PASSWORD | Configuration value. | cache.ts |
cache.redis.db | 0 | CACHE_REDIS_DB | Configuration value. | cache.ts |
cache.redis.keyPrefix | "quik:cache:" | CACHE_REDIS_KEY_PREFIX | Configuration value. | cache.ts |