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


PHP ObjectCache::newFromId方法代码示例

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


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

示例1: testMakeKey

 /**
  * @covers BagOStuff::makeGlobalKey
  * @covers BagOStuff::makeKeyInternal
  */
 public function testMakeKey()
 {
     $cache = ObjectCache::newFromId('hash');
     $localKey = $cache->makeKey('first', 'second', 'third');
     $globalKey = $cache->makeGlobalKey('first', 'second', 'third');
     $this->assertStringMatchesFormat('%Sfirst%Ssecond%Sthird%S', $localKey, 'Local key interpolates parameters');
     $this->assertStringMatchesFormat('global%Sfirst%Ssecond%Sthird%S', $globalKey, 'Global key interpolates parameters and contains global prefix');
     $this->assertNotEquals($localKey, $globalKey, 'Local key and global key with same parameters should not be equal');
 }
开发者ID:rrameshs,项目名称:mediawiki,代码行数:13,代码来源:BagOStuffTest.php

示例2: setUp

 protected function setUp()
 {
     parent::setUp();
     // type defined through parameter
     if ($this->getCliArg('use-bagostuff')) {
         $name = $this->getCliArg('use-bagostuff');
         $this->cache = ObjectCache::newFromId($name);
     } else {
         // no type defined - use simple hash
         $this->cache = new HashBagOStuff();
     }
     $this->cache->delete(wfMemcKey('test'));
 }
开发者ID:rploaiza,项目名称:dbpedia-latinoamerica,代码行数:13,代码来源:BagOStuffTest.php


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