StateStorageType
Defines the possible storage types for persisting manager state.
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.