Built-in data providers
A data provider is an object used to push data into a stack.
Redis
The StackItKvsRedis data provider use the phpredis extension. This data provider require the following config entries
- redis_host The Redis server host
- redis_port The Redis server port
Example of configuration:
;; The Redis server host
redis_host="127.0.0.1"
;; The Redis server port
redis_port=6379
Dependances:
PRedis
If you can not install the phpredis extension you can use the StackItKvsPRedis data processor which use the predis client. The required config entries are
- redis_host The Redis server host
- redis_port The Redis server port
Dependances:
- A Redis server
- The predis client