标签:调用 定义 remove auto mina nbsp laravel move 支持
怎样扩展 Laravel 的缓存驱动
在 Laravel 4 中使用 Cache::get($key), Cache::put($key, $value, $minutes) 这种代码时。实际上是訪问 实例化的 Illuminate\Cache\Repository, 所以我们通过 Cache::extend 方法扩展自己定义缓存驱动时,相同应该返回一个 Illuminate\Cache\Repository 对象。
Laravel 4 内置的 Memcached 缓存驱动,实现的流程是这种:
1.创建一个标准 Memcached 类的新对象
2.用上一步创建的 Memcached 对象创建一个实现了 Illuminate\Cache\StoreInterface 接口的 Illuminate\Cache\MemecachedStore 对象。
3.用上一步创建的 MemcachedStore 对象创建一个 Illuminate\Cache\Repository 对象。
所以我们在扩展自己定义的 Cache 驱动时,依据自己的情况。选择上面的某一个步骤自己定义,终于还是要返回 Illuminate\Cache\Repository 对象。
比方上一篇文章中,我就是在第一步,创建标准 Memcached 对象之后。通过 setSaslAuthData() 方法设定 OCS 须要的usernamepassword。之后第2步、第3步并不须要自己定义。
ACE 的缓存服务
阿里云 ACE 的缓存服务。跟默认的 OCS 有所不同:
1.通过 Alibaba::Cache() 方法获得 Cache 对象。
2.ACE 的 Cache 对象与标准 Memcached 对象不同,支持的方法有限。
所以,这次第一步得到的不是标准 Memcached 对象,因此就不能创建 Illuminate\Cache\MemcachedStore 对象。须要自己实现 Illuminate\Cache\StoreInterface 接口。
在控制台创建了缓存空间之后,会有唯一的“缓存空间名称”,然后通过 Alibaba::Cache(‘缓存空间名称‘) 来获得 Cache 对象。下面就是实现 ACE 缓存服务驱动的步骤:
1.为了方便改动,我在配置文件 app/config/cache.php 中添加一个名为 ace 的键,存储缓存空间名称。
2.然后创建一个 AceMemcachedStore 类,这个类实现 Illuminate\Cache\StoreInterface 接口。
3.最后。用 AceMemcachedStore 对象来创建 Illuminate\Cache\Repository 对象。
以下来看详细的代码实现:
编码实现自己定义 ACE 缓存驱动:
第一步。改动配置文件。打开 app/config/cache.php,在最后添加一行:
// 指定缓存空间名称 ‘ace‘ => ‘lblog-cache‘,
"autoload": { "classmap": [ // autoload class ], "psr-4": { "Ace\\": "src/Ace" } },
<?php namespace Ace; use Illuminate\Cache\StoreInterface; use Illuminate\Cache\TaggableStore; class AceMemcachedStore extends TaggableStore implements StoreInterface { protected $memcached; protected $prefix; public function __construct($space, $prefix = ‘‘) { $this->memcached = \Alibaba::Cache($space); $this->prefix = strlen($prefix) > 0 ? $prefix.‘:‘ : ‘‘; } /** * Retrieve an item from the cache by key. * * @param string $key * @return mixed */ public function get($key) { $value = $this->memcached->get($this->prefix.$key); if(is_bool($value) && $value === false) { return null; } return $value; } /** * Store an item in the cache for a given number of minutes. * * @param string $key * @param mixed $value * @param int $minutes * @return boolean */ public function put($key, $value, $minutes) { return $this->memcached->set($this->prefix.$key, $value, $minutes); } /** * Increment the value of an item in the cache. * * @param string $key * @param mixed $value * @return boolean */ public function increment($key, $value = 1) { return $this->memcached->increment($this->prefix.$key, $value); } /** * Decrement the value of an item in the cache. * * @param string $key * @param mixed $value * @return boolean */ public function decrement($key, $value = 1) { return $this->memcached->decrement($this->prefix.$key, $value); } /** * Store an item in the cache indefinitely. * * @param string $key * @param mixed $value * @return boolean */ public function forever($key, $value) { return $this->memcached->set($key, $value, 0); } /** * Remove an item from the cache. * * @param string $key * @return boolean */ public function forget($key) { return $this->memcached->delete($this->prefix.$key); } /** * Remove all items from the cache. * * @return void */ public function flush() { //$this->memcached->flush(); return false; } public function getMemcached() { return $this->memcached; } /** * Get the cache key prefix. * * @return string */ public function getPrefix() { return $this->prefix; } }
AceMemcachedStore类已经创建好了,接下来在 bootstrap/start.php 文件里扩展 Cache:http://www.lai18.com/content/368670.html
打开 bootstrap/start.php, 加入下面代码:
// 扩展名为 ace 的缓存驱动 Cache::extend(‘ace‘, function($app) { // 从 app/config/cache.php 文件里读取 "ace" 的值 $space = $app[‘config‘][‘cache.ace‘]; // 从 app/config/cache.php 文件里读取 "prefix" 的值 $prefix = $app[‘config‘][‘cache.prefix‘]; // 创建 \Ace\AceMemcachedStore 对象 $store = new \Ace\AceMemcachedStore($space, $prefix); // 创建并返回 \Illuminate\Cache\Repository 对象 return new \Illuminate\Cache\Repository($store); });
// 加入缓存。有效时间10分钟 Cache::put(‘my_key‘, ‘my value‘, 10); // 读取缓存 Cache::get(‘my_key‘) // 推断缓存是否存在 Cache::has(‘my_key‘) // 数据查询缓存 $users = DB::table(‘users‘)->remember(10)->get();
19Laravel框架学习笔记(二)项目实战之模型(Models)
25推荐几款用 Sublime Text 开发 Laravel 所用到的插件
26Laravel 4.2 中队列服务(queue)使用感受
36Laravel中使用阿里云OSS Composer包分享
37Laravel模板引擎Blade中section的一些标签的差别介绍
50PHP IDE PHPStorm配置支持友好Laravel代码提示方法
51Sublime Text 插件推荐系列 —— 用 Sublime 开发 Laravel
标签:调用 定义 remove auto mina nbsp laravel move 支持
原文地址:http://www.cnblogs.com/wgwyanfs/p/6791278.html