csql.conf
来自「b树实现源码,linux和unix下运行,速度快,极好用」· CONF 代码 · 共 46 行
CONF
46 行
# CSQL System Configuration File# Page size. Each database is logically divided into pages and allocation happens # in this unit of pages. Increasing this value will reduce frequent allocation of pages. PAGE_SIZE= 8192#Total number of active transactions that can run concurrently in the systemMAX_TRANS = 10#Total number of client process which can connect and work with the # database concurrentlyMAX_PROCS = 10#Total number of threads in a process which can connect and work with the # database concurrentlyMAX_THREADS = 10# Maximum size of the system database.MAX_SYS_DB_SIZE=1048576#Maximum size of the user database file.MAX_DB_SIZE=10485760#Shared memory key to be used by the system to create and locate system database.SYS_DB_KEY=2222#Shared memory key to be used by the system to create and locate user database.USER_DB_KEY=5555#Give full path for the log file where important system actions are stored.LOG_FILE=/tmp/log/log.out#The virtual memory start address at which the shared memory segment # will be created and attached. MAP_ADDRESS=400000000#Mutex timeout interval secondsMUTEX_TIMEOUT_SECS=0MUTEX_TIMEOUT_USECS=10MUTEX_TIMEOUT_RETRIES=10#Lock timeout interval secondsLOCK_TIMEOUT_SECS=0LOCK_TIMEOUT_USECS=10LOCK_TIMEOUT_RETRIES=10
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?