- Remove KCL ecosystem (~220 files deleted) - Migrate all infrastructure to Nickel schema system - Consolidate documentation: legacy docs → provisioning/docs/src/ - Add CI/CD workflows (.github/) and Rust build config (.cargo/) - Update core system for Nickel schema parsing - Update README.md and CHANGES.md for v5.0.0 release - Fix pre-commit hooks: end-of-file, trailing-whitespace - Breaking changes: KCL workspaces require migration - Migration bridge available in docs/src/development/
19 lines
793 B
Plaintext
19 lines
793 B
Plaintext
# Redis Database Template (REAL from wuji)
|
|
# Extracted from wuji production: /workspace/infra/wuji/taskservs/redis.k
|
|
|
|
import taskservs.databases.redis.kcl.redis as redis
|
|
|
|
# Real wuji Redis configuration
|
|
_redis_taskserv = redis.Redis {
|
|
version = "7.2.3" # REAL: exact version from wuji
|
|
port = 6379 # REAL: standard port
|
|
maxmemory = "512mb" # REAL: memory limit from wuji
|
|
maxmemory_policy = "allkeys-lru" # REAL: eviction policy
|
|
persistence = True # REAL: persistence enabled
|
|
bind_address = "0.0.0.0" # REAL: bind to all interfaces
|
|
loglevel = "notice" # REAL: log level
|
|
tcp_keepalive = 300 # REAL: keepalive setting
|
|
}
|
|
|
|
_redis_taskserv
|