config.so

来自「berkeley db 4.6.21的源码。berkeley db是一个简单的数」· SO 代码 · 共 31 行

SO
31
字号
m4_comment([$Id: config.so,v 10.19 2002/07/22 05:11:58 bostic Exp $])m4_ref_title(Transaction Subsystem,    Configuring transactions, @transaction configuration, txn/intro, txn/limits)m4_p([dnlThe application may change the number of simultaneous outstandingtransactions supported by the m4_db environment by calling them4_refT(dbenv_set_tx_max).  This will also set the size of theunderlying transaction subsystem's region.  When the number ofoutstanding transactions is reached, additional calls tom4_ref(txn_begin) will fail until some active transactions complete.])m4_p([dnlThere is an additional parameter used in configuring transactions; them4_ref(DB_TXN_NOSYNC) flag.  Setting the m4_ref(DB_TXN_NOSYNC) flag tom4_ref(dbenv_set_flags) when opening a transaction region changes thebehavior of transactions to not write or synchronously flush the logduring transaction commit.])m4_p([dnlThis change may significantly increase application transactionalthroughput.  However, it means that although transactions will continueto exhibit the ACI (atomicity, consistency, and isolation) properties,they will not have D (durability).  Database integrity will bemaintained, but it is possible that some number of the most recentlycommitted transactions may be undone during recovery instead of beingredone.])m4_page_footer

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?