本文整理汇总了PHP中core\Database::lockTables方法的典型用法代码示例。如果您正苦于以下问题:PHP Database::lockTables方法的具体用法?PHP Database::lockTables怎么用?PHP Database::lockTables使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core\Database
的用法示例。
在下文中一共展示了Database::lockTables方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: IFNULL
}
// Start transaction before lock tables.
Database::beginTransaction();
// Pick next awaiting process
Database::locKTables([FRAMEWORK_COLLECTION_PROCESS . ' READ']);
$res = (int) Database::fetchField('SELECT IFNULL(SUM(`capacity`), 0) as occupation
FROM `' . FRAMEWORK_COLLECTION_PROCESS . '`
WHERE `pid` IS NOT NULL AND `pid` > 0');
Database::unlockTables(true);
if ($res >= $capLimit) {
Log::debug('Active processes has occupied maximum server capacity, daemon exits.');
Database::rollback();
die;
}
unset($res, $capLimit);
Database::lockTables(array(FRAMEWORK_COLLECTION_PROCESS . ' LOW_PRIORITY WRITE', FRAMEWORK_COLLECTION_PROCESS . ' as `active` LOW_PRIORITY WRITE', FRAMEWORK_COLLECTION_PROCESS . ' as `inactive` LOW_PRIORITY WRITE'));
$process = Database::fetchRow('SELECT `inactive`.* FROM `' . FRAMEWORK_COLLECTION_PROCESS . '` as `inactive`
LEFT JOIN ( SELECT `type`, SUM(`capacity`) as `occupation` FROM `' . FRAMEWORK_COLLECTION_PROCESS . '`
WHERE `pid` IS NOT NULL GROUP BY `type` ) as `active`
ON `active`.`type` = `inactive`.`type`
WHERE `timestamp` <= CURRENT_TIMESTAMP
AND `start_time` <= CURRENT_TIMESTAMP
AND `inactive`.`pid` IS NULL
ORDER BY `occupation`, `weight` DESC, `id`
LIMIT 1;');
// No waiting jobs in queue.
if (!$process) {
Database::unlockTables(true);
Database::rollback();
Log::debug('No more jobs to do, suicide.');
die;
示例2: set
/**
* Updates process related info of specified property $name.
*
* Note: Updates to real table properties are ignored, as they are requried
* by the process framework.
*/
public static function set($name, $value)
{
Database::lockTables(FRAMEWORK_COLLECTION_PROCESS, FRAMEWORK_COLLECTION_LOG);
$res = self::get();
if (!$res) {
Database::unlockTables();
return false;
}
$readOnlyFields = ['id', 'command', 'type', 'weight', 'pid', 'timestamp'];
if (in_array($name, $readOnlyFields)) {
Database::unlockTables();
return false;
}
if (is_null($value)) {
unset($res[$name]);
} else {
$res[$name] = $value;
}
unset($res['timestamp']);
$ret = Node::set($res);
Database::unlockTables();
// Clear data cache
self::$_processData = null;
return $ret;
}