📜  OrientDB-配置数据库

📅  最后修改于: 2020-11-26 05:20:16             🧑  作者: Mango


在本章中,您可以学习如何通过OrientDB命令行显示特定数据库的配置。此命令适用于本地和远程数据库。

配置信息包含启用或不启用的默认缓存,该缓存的大小,负载因子值,映射的最大内存,节点页面大小,池的最小和最大大小等。

以下语句是config database命令的基本语法。

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 and get命令从命令行轻松完成。

配置集

您可以使用CONFIG SET命令更新配置变量值。

以下语句是config set命令的基本语法。

CONFIG SET  

–仅在连接到特定数据库后才能使用此命令。

在此示例中,我们将使用上一章中创建的名为“ demo”的数据库。我们将’tx.autoRetry’变量值修改为5。

您可以使用以下命令来设置演示数据库的配置。

orientdb {db = demo}> CONFIG SET tx.autoRetry 5 

如果成功执行,您将获得以下输出。

Local configuration value changed correctly

配置获取

您可以使用CONFIG GET命令显示配置变量值。

以下语句是config get命令的基本语法。

CONFIG GET  

–仅在连接到特定数据库后才能使用此命令。

在此示例中,我们将使用上一章中创建的名为“ demo”的数据库。我们将尝试检索“ tx.autoRetry”变量值。

您可以使用以下命令显示演示数据库的配置。

orientdb {db = demo}> CONFIG GET tx.autoRetry

如果成功执行,您将获得以下输出。

Local configuration: tx.autoRetry = 5