命令 - CONFIG SET

更新配置项。

语法

CONFIG SET <config-variable> <config-value>
  • <config-variable> 定义配置项变量
  • <config-value> 定义设置的值。

例子

  • 展示tx.autoRetry的当前值:

    orientdb> CONFIG GET tx.autoRetry
    
    Remote configuration: tx.autoRetry = 1
    

    Change the tx.autoRetry value to 5:

    orientdb> CONFIG SET tx.autoRetry 5
    
    Remote configuration value changed correctly.
    

    Display new value:

    orientdb> CONFIG GET tx.autoRetry
    
    Remote configuration: tx.autoRetry = 5
    

CONFIG展示所有的值。CONFIG GET命令展示当前值.

更多其他命令,参考Console Commands.