Browse Source

added missing init() method to Cache class

tags/2.0.0-beta
Carsten Brandt 12 years ago
parent
commit
c486cf410f
  1. 12
      framework/caching/Cache.php

12
framework/caching/Cache.php

@ -71,6 +71,18 @@ abstract class Cache extends Component implements \ArrayAccess
/**
* Initializes the application component.
* This method overrides the parent implementation by setting default cache key prefix.
*/
public function init()
{
parent::init();
if ($this->keyPrefix === null) {
$this->keyPrefix = \Yii::$app->id;
}
}
/**
* Builds a normalized cache key from a given key.
*
* The generated key contains letters and digits only, and its length is no more than 32.

Loading…
Cancel
Save