GRAPH.CONFIG SET
Syntax
GRAPH.CONFIG SET name value
- Available in:
- Redis Stack / Graph 2.2.11
- Time complexity:
Set the value of a RedisGraph configuration parameter.
RedisGraph configuration parameters are detailed here.
Note: As detailed in the link above, not all RedisGraph configuration parameters can be set at run-time.
127.0.0.1:6379> graph.config get TIMEOUT
1) "TIMEOUT"
2) (integer) 0
127.0.0.1:6379> graph.config set TIMEOUT 10000
OK
127.0.0.1:6379> graph.config get TIMEOUT
1) "TIMEOUT"
2) (integer) 10000
127.0.0.1:6379> graph.config set THREAD_COUNT 10
(error) This configuration parameter cannot be set at run-time
Feedback
If you've found issues on this page, or have suggestions for improvement, please submit a request to merge or open an issue in the repository.