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


PHP CacheBackendInterface::setMultiple方法代码示例

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


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

示例1: readMultiple

 /**
  * {@inheritdoc}
  */
 public function readMultiple(array $names)
 {
     $data_to_return = array();
     $cache_keys_map = $this->getCacheKeys($names);
     $cache_keys = array_values($cache_keys_map);
     $cached_list = $this->cache->getMultiple($cache_keys);
     if (!empty($cache_keys)) {
         // $cache_keys_map contains the full $name => $cache_key map, while
         // $cache_keys contains just the $cache_key values that weren't found in
         // the cache.
         // @see \Drupal\Core\Cache\CacheBackendInterface::getMultiple()
         $names_to_get = array_keys(array_intersect($cache_keys_map, $cache_keys));
         $list = $this->storage->readMultiple($names_to_get);
         // Cache configuration objects that were loaded from the storage, cache
         // missing configuration objects as an explicit FALSE.
         $items = array();
         foreach ($names_to_get as $name) {
             $data = isset($list[$name]) ? $list[$name] : FALSE;
             $data_to_return[$name] = $data;
             $items[$cache_keys_map[$name]] = array('data' => $data);
         }
         $this->cache->setMultiple($items);
     }
     // Add the configuration objects from the cache to the list.
     $cache_keys_inverse_map = array_flip($cache_keys_map);
     foreach ($cached_list as $cache_key => $cache) {
         $name = $cache_keys_inverse_map[$cache_key];
         $data_to_return[$name] = $cache->data;
     }
     // Ensure that only existing configuration objects are returned, filter out
     // cached information about missing objects.
     return array_filter($data_to_return);
 }
开发者ID:davidsoloman,项目名称:drupalconsole.com,代码行数:36,代码来源:CachedStorage.php

示例2: readMultiple

 /**
  * {@inheritdoc}
  */
 public function readMultiple(array $names)
 {
     $list = array();
     // The names array is passed by reference and will only contain the names of
     // config object not found after the method call.
     // @see \Drupal\Core\Cache\CacheBackendInterface::getMultiple()
     $cached_list = $this->cache->getMultiple($names);
     if (!empty($names)) {
         $list = $this->storage->readMultiple($names);
         // Cache configuration objects that were loaded from the storage, cache
         // missing configuration objects as an explicit FALSE.
         $items = array();
         foreach ($names as $name) {
             $items[$name] = array('data' => isset($list[$name]) ? $list[$name] : FALSE);
         }
         $this->cache->setMultiple($items);
     }
     // Add the configuration objects from the cache to the list.
     foreach ($cached_list as $name => $cache) {
         $list[$name] = $cache->data;
     }
     // Ensure that only existing configuration objects are returned, filter out
     // cached information about missing objects.
     return array_filter($list);
 }
开发者ID:anatalsceo,项目名称:en-classe,代码行数:28,代码来源:CachedStorage.php

示例3: setMultiple

 /**
  * {@inheritdoc}
  */
 public function setMultiple(array $items)
 {
     $this->consistentBackend->setMultiple($items);
     $this->markAsOutdated();
     // Don't write the cache tags to the fast backend as any cache tag
     // invalidation results in an invalidation of the whole fast backend.
     foreach ($items as &$item) {
         unset($item['tags']);
     }
     $this->fastBackend->setMultiple($items);
 }
开发者ID:nstielau,项目名称:drops-8,代码行数:14,代码来源:ChainedFastBackend.php

示例4: setMultiple

 /**
  * {@inheritdoc}
  */
 public function setMultiple(array $items)
 {
     $this->markAsOutdated();
     $this->consistentBackend->setMultiple($items);
     $this->fastBackend->setMultiple($items);
 }
开发者ID:anatalsceo,项目名称:en-classe,代码行数:9,代码来源:ChainedFastBackend.php

示例5: setMultiple

 /**
  * {@inheritdoc}
  */
 public function setMultiple(array $items)
 {
     return $this->cacheBackend->setMultiple($items);
 }
开发者ID:ddrozdik,项目名称:dmaps,代码行数:7,代码来源:CacheBackendWrapper.php


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