redis AR cleanup

This commit is contained in:
Carsten Brandt
2013-09-25 11:54:43 +02:00
parent f3aa807d8f
commit df22ffa304

View File

@@ -60,10 +60,10 @@ class ActiveRecord extends \yii\db\ActiveRecord
*/
public static function updateAll($attributes, $condition = null, $params = array())
{
$db = static::getDb();
if (empty($attributes)) {
return 0;
}
$db = static::getDb();
$n=0;
foreach(static::fetchPks($condition) as $pk) {
$newPk = $pk;
@@ -113,6 +113,9 @@ class ActiveRecord extends \yii\db\ActiveRecord
*/
public static function updateAllCounters($counters, $condition = null, $params = array())
{
if (empty($counters)) {
return 0;
}
$db = static::getDb();
$n=0;
foreach(static::fetchPks($condition) as $pk) {
@@ -177,7 +180,6 @@ class ActiveRecord extends \yii\db\ActiveRecord
return $pks;
}
/**
* Builds a normalized key from a given primary key value.
*