Skip to main content
Version: v2.10.0

StateStorageType

Defines the possible storage types for persisting manager state.

MemberValue
Memory"memory"
Redis"redis"
JSON"json"

Memory

Stores all data in memory. Fast but data is lost when the application restarts.


Redis

Uses Redis as backend storage. Allows persistence across restarts and distributed setups.


JSON

Persists data in JSON files on disk. Good for simple local setups without Redis.