K2hash::unsetTransactionThreadPool
トランザクション処理用のスレッドを利用しない
説明
public static bool K2hash::unsetTransactionThreadPool ( void )
トランザクション処理用のスレッドを利用しません。
パラメータ
この関数にはパラメータはありません。
戻り値
成功した場合に true を、失敗した場合に false を返します。
例
- 例 1 - トランザクション処理用のスレッド数を設定する
<?php
var_dump(K2hash::settransactionThreadPool(1));
var_dump(K2hash::gettransactionThreadPool());
var_dump(K2hash::unsettransactionThreadPool());
?>
上の例の出力は以下となります。
bool(true)
int(1)
bool(true)
参考
- K2hash::getTransactionThreadPool - トランザクション処理用のスレッド数を取得する
- K2hash::setTransactionThreadPool - トランザクション処理用のスレッド数を設定する