Source code for pynenc_redis.conf.config_state_backend
from cistell import ConfigField
from pynenc.conf.config_state_backend import ConfigStateBackend
from pynenc_redis.conf.config_redis import ConfigRedis
[docs]
class ConfigStateBackendRedis(ConfigStateBackend, ConfigRedis):
"""
Specific Configuration for the Redis State Backend.
:cvar ConfigField[int] pagination_batch_size:
Number of items to retrieve in each batch when paginating through large
collections of workflow runs or other state data.
"""
pagination_batch_size = ConfigField(100)