当前位置: 首页>>代码示例>>PHP>>正文


PHP Db::unlockAllTables方法代码示例

本文整理汇总了PHP中Piwik\Db::unlockAllTables方法的典型用法代码示例。如果您正苦于以下问题:PHP Db::unlockAllTables方法的具体用法?PHP Db::unlockAllTables怎么用?PHP Db::unlockAllTables使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Piwik\Db的用法示例。


在下文中一共展示了Db::unlockAllTables方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: deleteUnusedLogActions

 /**
  * Deletes all unused entries from the log_action table. This method uses a temporary table to store used
  * actions, and then deletes rows from log_action that are not in this temporary table.
  *
  * Table locking is required to avoid concurrency issues.
  *
  * @throws \Exception If table locking permission is not granted to the current MySQL user.
  */
 public function deleteUnusedLogActions()
 {
     if (!Db::isLockPrivilegeGranted()) {
         throw new \Exception("RawLogDao.deleteUnusedLogActions() requires table locking permission in order to complete without error.");
     }
     // get current max ID in log tables w/ idaction references.
     $maxIds = $this->getMaxIdsInLogTables();
     $this->createTempTableForStoringUsedActions();
     // do large insert (inserting everything before maxIds) w/o locking tables...
     $this->insertActionsToKeep($maxIds, $deleteOlderThanMax = true);
     // ... then do small insert w/ locked tables to minimize the amount of time tables are locked.
     $this->lockLogTables();
     $this->insertActionsToKeep($maxIds, $deleteOlderThanMax = false);
     // delete before unlocking tables so there's no chance a new log row that references an
     // unused action will be inserted.
     $this->deleteUnusedActions();
     Db::unlockAllTables();
 }
开发者ID:CaptainSharf,项目名称:SSAD_Project,代码行数:26,代码来源:RawLogDao.php

示例2: purgeUnusedLogActions

 /**
  * Safely delete all unused log_action rows.
  */
 private function purgeUnusedLogActions()
 {
     $this->createTempTable();
     // get current max ID in log tables w/ idaction references.
     $maxIds = $this->getMaxIdsInLogTables();
     // do large insert (inserting everything before maxIds) w/o locking tables...
     $this->insertActionsToKeep($maxIds, $deleteOlderThanMax = true);
     // ... then do small insert w/ locked tables to minimize the amount of time tables are locked.
     $this->lockLogTables();
     $this->insertActionsToKeep($maxIds, $deleteOlderThanMax = false);
     // delete before unlocking tables so there's no chance a new log row that references an
     // unused action will be inserted.
     $this->deleteUnusedActions();
     Db::unlockAllTables();
 }
开发者ID:bossrabbit,项目名称:piwik,代码行数:18,代码来源:LogDataPurger.php

示例3: isLockPrivilegeGranted

 /**
  * Checks whether the database user is allowed to lock tables.
  *
  * @return bool
  */
 public static function isLockPrivilegeGranted()
 {
     if (is_null(self::$lockPrivilegeGranted)) {
         try {
             Db::lockTables(Common::prefixTable('log_visit'));
             Db::unlockAllTables();
             self::$lockPrivilegeGranted = true;
         } catch (Exception $ex) {
             self::$lockPrivilegeGranted = false;
         }
     }
     return self::$lockPrivilegeGranted;
 }
开发者ID:hongquan,项目名称:piwik,代码行数:18,代码来源:Db.php


注:本文中的Piwik\Db::unlockAllTables方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。