- OrientDB简介
- OrientDB安装
- OrientDB基本概念
- OrientDB数据类型
- OrientDB控制台模式
- OrientDB数据库命令
- OrientDB记录命令
- OrientDB类命令
- OrientDB集群命令
- OrientDB属性命令
- OrientDB顶点命令
- OrientDB边缘命令
- OrientDB高级概念
- OrientDB接口
OrientDB配置数据库
在本章中,学习如何通过OrientDB命令行显示特定数据库的配置。 该命令适用于本地和远程数据库。
配置信息包含启用或未启用的默认缓存,该缓存的大小,加载因子值,映射的最大内存,节点页面大小,池最小和最大大小等。
以下语句是config
数据库命令的基本语法。
CONFIG
注 - 只有在连接到特定数据库后才能使用此命令。
示例
在这个例子中,我们将使用在前一章中创建的名为demo
的数据库。
可以使用以下命令来显示演示数据库的配置。
Orientdb {db = demo}> CONFIG
如果它成功执行,您将得到以下输出。
LOCAL SERVER CONFIGURATION: +---------------------------------------+-------------------------+ | NAME | VALUE | +---------------------------------------+-------------------------+ | environment.dumpCfgAtStartup | false | | environment.concurrent | true | | environment.allowJVMShutdown | true | | script.pool.maxSize | 20 | | memory.useUnsafe | true | | memory.directMemory.safeMode | true | | memory.directMemory.trackMode | false | |……………………………….. | | | storage.lowestFreeListBound | 16 | | network.binary.debug | false | | network.http.maxLength | 1000000 | | network.http.charset | utf-8 | | network.http.jsonResponseError | true | | network.http.json | false | | tx.log.fileType | classic | | tx.log.synch | false | | tx.autoRetry | 1 | | client.channel.minPool | 1 | | storage.keepOpen | true | | cache.local.enabled | true | +---------------------------------------+-------------------------+ orientdb {db = demo}>
在上面的配置参数列表中,如果要更改任何参数值,则可以使用config set
和get
命令轻松地从命令行执行此操作。
Config Set命令
可以使用CONFIG SET
命令更新配置变量值。
以下语句是config set
命令的基本语法。
CONFIG SET <config-variable> <config-value>
注 - 只有在连接到特定数据库后才能使用此命令。
示例
在这个例子中,我们将使用在前一章中创建的名为'demo'
的数据库。假设要修改'tx.autoRetry'
变量值为5
。
可以使用以下命令设置demo
数据库的配置。
orientdb {db = demo}> CONFIG SET tx.autoRetry 5
如果它成功执行,将获得以下输出。
Local configuration value changed correctly
CONFIG GET命令
可以使用CONFIG GET
命令显示配置变量值。
以下语句是config get
命令的基本语法。
CONFIG GET <config-variable>
注 - 只有在连接到特定数据库后才能使用此命令。
示例
在这个例子中,我们将使用在前一章中创建的名为demo
的数据库。假设要检索'tx.autoRetry'
变量值。
可以使用以下命令来显示demo
数据库的配置。
orientdb {db = demo}> CONFIG GET tx.autoRetry
如果它成功执行,将获得以下输出。
Local configuration: tx.autoRetry = 5
上一篇:OrientDB释放数据库
下一篇:OrientDB导出数据库
扫描二维码
程序员编程王