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


PHP Cache::__construct方法代码示例

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


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

示例1: __construct

 public function __construct(Settings $settings)
 {
     $storage = new FileStorage($settings->temp_dir);
     $this->settings = $settings;
     parent::__construct($storage);
     $this->cache_data = $this->load($this->settings->cache_name);
     if ($this->cache_data === null) {
         $this->save($this->settings->cache_name, array());
         $this->cache_data = array();
     }
 }
开发者ID:DIPcom,项目名称:Localization,代码行数:11,代码来源:Cache.php

示例2: __construct

 /**
  * QCache constructor.
  *
  * @param string $type
  * @param string $namespace
  * @param BootLoader $bootLoader
  */
 public function __construct(string $type = 'memory', string $namespace = '', BootLoader $bootLoader)
 {
     $this->bootLoader = $bootLoader;
     if ($type == 'file') {
         $storage = new FileStorage($this->getCacheDir());
     } elseif ($type == 'ram') {
         $storage = new MemoryStorage();
     } else {
         $storage = ($server = $this->getMemCachedServer()) ? new MemcachedStorage($server['host'], $server['port'], $server['prefix']) : new MemoryStorage();
     }
     parent::__construct($storage, $namespace);
 }
开发者ID:minutephp,项目名称:framework,代码行数:19,代码来源:QCache.php

示例3: __construct

 public function __construct(Caching\IStorage $storage, $hour = '14:45')
 {
     parent::__construct($storage, "Pto.Bank");
     $this->hourRefresh = $hour;
 }
开发者ID:pupitooo,项目名称:bank,代码行数:5,代码来源:Storage.php

示例4: __construct

 /**
  * New instance of Cache
  *
  * @param string $namespace     [optional] Cache namespace
  */
 public function __construct($namespace = NULL)
 {
     $storage = new FileStorage(sys_get_temp_dir());
     parent::__construct($storage, $namespace);
 }
开发者ID:allenlinatoc,项目名称:php-ldap,代码行数:10,代码来源:Cache.php

示例5: __construct

 public function __construct(Nette\Caching\IStorage $storage, \DateTime $date = NULL)
 {
     $suffix = $date === NULL ? NULL : $date->format('Y-m-d');
     parent::__construct($storage, __NAMESPACE__ . $suffix);
 }
开发者ID:rokerkony,项目名称:Exchange,代码行数:5,代码来源:Storage.php


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