本文整理汇总了PHP中Zend_Cache_Core::setLifetime方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Cache_Core::setLifetime方法的具体用法?PHP Zend_Cache_Core::setLifetime怎么用?PHP Zend_Cache_Core::setLifetime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Cache_Core
的用法示例。
在下文中一共展示了Zend_Cache_Core::setLifetime方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init
/**
*
*/
public static function init()
{
if (!self::$instance instanceof \Zend_Cache_Core) {
// check for custom cache configuration
$customCacheFile = PIMCORE_CONFIGURATION_DIRECTORY . "/cache.xml";
if (is_file($customCacheFile)) {
$config = self::getDefaultConfig();
try {
$conf = new \Zend_Config_Xml($customCacheFile);
if ($conf->frontend) {
$config["frontendType"] = (string) $conf->frontend->type;
$config["customFrontendNaming"] = (bool) $conf->frontend->custom;
if ($conf->frontend->options && method_exists($conf->frontend->options, "toArray")) {
$config["frontendConfig"] = $conf->frontend->options->toArray();
}
}
if ($conf->backend) {
$config["backendType"] = (string) $conf->backend->type;
$config["customBackendNaming"] = (bool) $conf->backend->custom;
if ($conf->backend->options && method_exists($conf->backend->options, "toArray")) {
$config["backendConfig"] = $conf->backend->options->toArray();
}
}
if (isset($config["frontendConfig"]["lifetime"])) {
self::$defaultLifetime = $config["frontendConfig"]["lifetime"];
}
$config = self::normalizeConfig($config);
// here you can use the cache backend you like
try {
self::$instance = self::initializeCache($config);
} catch (\Exception $e) {
\Logger::crit("can't initialize cache with the given configuration " . $e->getMessage());
}
} catch (\Exception $e) {
\Logger::crit($e);
\Logger::crit("Error while reading cache configuration, using the default file backend");
}
}
}
// return default cache if cache cannot be initialized
if (!self::$instance instanceof \Zend_Cache_Core) {
self::$instance = self::getDefaultCache();
}
self::$instance->setLifetime(self::$defaultLifetime);
self::$instance->setOption("automatic_serialization", true);
self::$instance->setOption("automatic_cleaning_factor", 0);
// init the write lock once (from other processes etc.)
if (self::$writeLockTimestamp === null) {
self::$writeLockTimestamp = 0;
// set the write lock to 0, otherwise infinite loop (self::hasWriteLock() calls self::getInstance())
self::hasWriteLock();
}
self::setZendFrameworkCaches(self::$instance);
}
示例2: init
/**
*
*/
public static function init()
{
if (!self::$instance instanceof \Zend_Cache_Core) {
// check for custom cache configuration
$customConfigFile = \Pimcore\Config::locateConfigFile("cache.php");
if (is_file($customConfigFile)) {
$config = self::getDefaultConfig();
$conf = (include $customConfigFile);
if (is_array($conf)) {
if (isset($conf["frontend"])) {
$config["frontendType"] = $conf["frontend"]["type"];
$config["customFrontendNaming"] = $conf["frontend"]["custom"];
if (isset($conf["frontend"]["options"])) {
$config["frontendConfig"] = $conf["frontend"]["options"];
}
}
if (isset($conf["backend"])) {
$config["backendType"] = $conf["backend"]["type"];
$config["customBackendNaming"] = $conf["backend"]["custom"];
if (isset($conf["backend"]["options"])) {
$config["backendConfig"] = $conf["backend"]["options"];
}
}
if (isset($config["frontendConfig"]["lifetime"])) {
self::$defaultLifetime = $config["frontendConfig"]["lifetime"];
}
$config = self::normalizeConfig($config);
// here you can use the cache backend you like
try {
self::$instance = self::initializeCache($config);
} catch (\Exception $e) {
Logger::crit("can't initialize cache with the given configuration " . $e->getMessage());
}
} else {
Logger::crit("Error while reading cache configuration, using the default database backend");
}
}
}
// return default cache if cache cannot be initialized
if (!self::$instance instanceof \Zend_Cache_Core) {
self::$instance = self::getDefaultCache();
}
self::$instance->setLifetime(self::$defaultLifetime);
self::$instance->setOption("automatic_serialization", true);
self::$instance->setOption("automatic_cleaning_factor", 0);
// init the write lock once (from other processes etc.)
if (self::$writeLockTimestamp === null) {
self::$writeLockTimestamp = 0;
// set the write lock to 0, otherwise infinite loop (self::hasWriteLock() calls self::getInstance())
self::hasWriteLock();
}
self::setZendFrameworkCaches(self::$instance);
}
示例3: getInstance
/**
* Returns a instance of the cache, if the instance isn't available it creates a new one
*
* @return Zend_Cache_Core|Zend_Cache_Frontend
*/
public static function getInstance()
{
if (!empty($_REQUEST["nocache"])) {
self::disable();
}
if (!self::$instance instanceof Zend_Cache_Core) {
// default file based configuration
$config = self::getDefaultConfig();
// check for custom cache configuration
$customCacheFile = PIMCORE_CONFIGURATION_DIRECTORY . "/cache.xml";
if (is_file($customCacheFile)) {
try {
$conf = new Zend_Config_Xml($customCacheFile);
if ($conf->frontend) {
$config["frontendType"] = (string) $conf->frontend->type;
$config["customFrontendNaming"] = (bool) $conf->frontend->custom;
if ($conf->frontend->options) {
$config["frontendConfig"] = $conf->frontend->options->toArray();
}
}
if ($conf->backend) {
$config["backendType"] = (string) $conf->backend->type;
$config["customBackendNaming"] = (bool) $conf->backend->custom;
if ($conf->backend->options) {
$config["backendConfig"] = $conf->backend->options->toArray();
}
}
} catch (Exception $e) {
Logger::error($e);
Logger::error("Error while reading cache configuration");
}
}
self::$defaultLifetime = $config["frontendConfig"]["lifetime"];
// here you can use the cache backend you like
try {
self::$instance = self::initializeCache($config);
} catch (Exception $e) {
Logger::warning("can't initialize cache with the given configuration " . $e->getMessage());
}
}
// return default cache if cache cannot be initialized
if (!self::$instance instanceof Zend_Cache_Core) {
self::$instance = self::getDefaultCache();
}
// reset default lifetime
self::$instance->setLifetime(self::$defaultLifetime);
return self::$instance;
}