国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Lumen中使用速度更快的PhpRedis擴展(更新隊列驅動)

kyanag / 1597人閱讀

摘要:發布,新增隊列驅動,緩存驅動移動至,使用老版本的需要修改中緩存驅動加載位置。目前支持根據獲取配置的基本讀寫等。和可以繼續使用自帶的驅動,兩者互不影響。下一步如有需要可以繼續完善這兩部分的驅動。

歡迎關注我的博客 http://targetliu.com

Lumen的確是一款適合做API,速度很快的框架。但是在項目中使用Redis時發現Lumen默認使用的 predis/predis 會拖慢整體速度,特別是在高并發的情況下,所以尋思著使用 PhpRedis 代替,畢竟 PhpRedis 是C語言寫的模塊,性能上肯定優于 predis

文中例子已經整理成一個 composer 包,文末有簡單介紹。

[TargetLiu/PHPRedis]

2016.7.29:v1.1.0發布,新增隊列驅動,緩存驅動移動至 TargetLiuPHPRedisCache ,使用老版本的需要修改 bootstrap/app.php 中緩存驅動加載位置。

https://github.com/TargetLiu/PHPRedis

https://packagist.org/packages/targetliu/phpredis

編譯安裝PhpRedis

由于 PhpRedis 是C語言寫的模塊,需要編譯安裝。安裝方法網上一搜一大把,請根據自己的環境選擇相應的方法安裝即可。

兩個可能用得上的鏈接:

PECL - PhpRedis

GitHub - PhpRedis

Lumen中使用PhpRedis

很簡單,只需要在 bootstrap/app.php 中添加下列代碼將PhpRedis注入容器即可:

$app->singleton("phpredis", function(){
    $redis = new Redis;
    $redis->pconnect("127.0.0.1"); //建立連接
        $redis->select(1); //選擇庫
        $redis->auth("xxxx"); //認證
    return $redis;
});
unset($app->availableBindings["redis"]);

綁定后即可通過 app("phpredis") 直接使用 PhpRedis 了,具體使用方法可以看相應的官方文檔。

Lumen中為PhpRedis增加Cache驅動

由于實際使用中更多的將Redis用于緩存,Lumen自帶的Redis緩存驅動是基于 predis/predis 實現,我們現在新建一個驅動以支持 Phpredis

新增Cache驅動詳細方法可以查看 官方文檔,這里指羅列一些關鍵的點。更多的內容也可以查看 TargetLiu/PHPRedis

我們首先創建一個 ServiceProvider

make("phpredis"), $app->config["cache.prefix"]));
        });
    }

    /**
     * Register bindings in the container.
     *
     * @return void
     */
    public function register()
    {
        //
    }
}

這樣就建立一個名為 phpreids 的驅動。再創建一個基于 IlluminateContractsCacheStore 契約的緩存操作類用以操作 PhpRedis

redis = $redis;
        $this->setPrefix($prefix);
    }

    /**
     * Retrieve an item from the cache by key.
     *
     * @param  string|array  $key
     * @return mixed
     */
    public function get($key)
    {
        if (!is_null($value = $this->connection()->get($this->prefix . $key))) {
            return is_numeric($value) ? $value : unserialize($value);
        }
    }

    /**
     * Retrieve multiple items from the cache by key.
     *
     * Items not found in the cache will have a null value.
     *
     * @param  array  $keys
     * @return array
     */
    public function many(array $keys)
    {
        $return = [];

        $prefixedKeys = array_map(function ($key) {
            return $this->prefix . $key;
        }, $keys);

        $values = $this->connection()->mGet($prefixedKeys);

        foreach ($values as $index => $value) {
            $return[$keys[$index]] = is_numeric($value) ? $value : unserialize($value);
        }

        return $return;
    }

    /**
     * Store an item in the cache for a given number of minutes.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @param  int     $minutes
     * @return void
     */
    public function put($key, $value, $minutes)
    {
        $value = is_numeric($value) ? $value : serialize($value);

        $this->connection()->set($this->prefix . $key, $value, (int) max(1, $minutes * 60));
    }

    /**
     * Store multiple items in the cache for a given number of minutes.
     *
     * @param  array  $values
     * @param  int  $minutes
     * @return void
     */
    public function putMany(array $values, $minutes)
    {
        foreach ($values as $key => $value) {
            $this->put($key, $value, $minutes);
        }
    }

    /**
     * Increment the value of an item in the cache.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @return int|bool
     */
    public function increment($key, $value = 1)
    {
        return $this->connection()->incrBy($this->prefix . $key, $value);
    }

    /**
     * Decrement the value of an item in the cache.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @return int|bool
     */
    public function decrement($key, $value = 1)
    {
        return $this->connection()->decrBy($this->prefix . $key, $value);
    }

    /**
     * Store an item in the cache indefinitely.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @return void
     */
    public function forever($key, $value)
    {
        $value = is_numeric($value) ? $value : serialize($value);

        $this->connection()->set($this->prefix . $key, $value);
    }

    /**
     * Remove an item from the cache.
     *
     * @param  string  $key
     * @return bool
     */
    public function forget($key)
    {
        return (bool) $this->connection()->delete($this->prefix . $key);
    }

    /**
     * Remove all items from the cache.
     *
     * @return void
     */
    public function flush()
    {
        $this->connection()->flushDb();
    }

    /**
     * Get the Redis connection instance.
     *
     * @return PredisClientInterface
     */
    public function connection()
    {
        return $this->redis;
    }

    /**
     * Get the Redis database instance.
     *
     * @return IlluminateRedisDatabase
     */
    public function getRedis()
    {
        return $this->redis;
    }

    /**
     * Get the cache key prefix.
     *
     * @return string
     */
    public function getPrefix()
    {
        return $this->prefix;
    }

    /**
     * Set the cache key prefix.
     *
     * @param  string  $prefix
     * @return void
     */
    public function setPrefix($prefix)
    {
        $this->prefix = !empty($prefix) ? $prefix . ":" : "";
    }
}

通過以上兩個步驟基本上就完成了Cache驅動的創建,現在只需要在 bootstrap/app.php 中注入新建的Cache驅動然后配置 .envCACHE_DRIVER = phpredis ,最后再在 config/cache.php 中加入相應的驅動代碼即可

"phpredis" => [
    "driver" => "phpredis"
],

Cache的使用請查看Lumen官方文檔

一個基于PhpRedis的Lumen擴展包

[TargetLiu/PHPRedis]

https://github.com/TargetLiu/PHPRedis

https://packagist.org/packages/targetliu/phpredis

安裝:composer require targetliu/phpredis

安裝及使用方法請看 README

這個包只是我做的一個簡單示例,引入了 PhpRedis 并做了最簡單的緩存驅動。目前支持根據 .env 獲取Redis配置、Cache的基本讀寫等。

Session和Queue可以繼續使用Lumen自帶的Redis驅動,兩者互不影響。下一步如有需要可以繼續完善這兩部分的驅動。

這個包將根據自己工作需求以及大家的已經進一步完善。

歡迎大家提出意見共同完善。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/21789.html

相關文章

  • laravel/lumen 使用 redis隊列

    摘要:配置項用于配置失敗隊列任務存放的數據庫及數據表。要使用隊列驅動,需要在配置文件中配置數據庫連接。如果應用使用了,那么可以使用時間或并發來控制隊列任務。你可以使用命令運行這個隊列進程。如果隊列進程意外關閉,它會自動重啟啟動隊列進程。 一、概述 在Web開發中,我們經常會遇到需要批量處理任務的場景,比如群發郵件、秒殺資格獲取等,我們將這些耗時或者高并發的操作放到隊列中異步執行可以有效緩解系...

    mengbo 評論0 收藏0
  • Lumen---為速度而生 Laravel 框架

    摘要:什么是官網是一個由組件搭建而成的微框架是當前最快的框架之一在什么時候使用專為微服務或者設計舉個例子如果你的應用里面有部分業務邏輯的請求頻率比較高就可以單獨把這部分業務邏輯拿出來使用來構建一個小因為是對優化了框架的加載機制所以對資源的要求少很 什么是 Lumen?官網 lumen 是一個由 Laravel 組件搭建而成的微框架,是當前最快的 PHP 框架之一! 在什么時候使用 Lume...

    104828720 評論0 收藏0
  • Lumen 初體驗(二)

    摘要:的現狀目前是版本,是基于開發。入口文件啟動文件和配置文件框架的入口文件是。在路由中指定控制器類必須寫全命名空間,不然會提示找不到類。目前支持四種數據庫系統以及。使用時發生錯誤,因為在文件中,的默認驅動是。 最近使用 Lumen 做了 2 個業余項目,特此記錄和分享一下。 Lumen 的介紹 在使用一項新的技術時,了解其應用場景是首要的事情。 Lumen 的口號:為速度而生的 La...

    Cheriselalala 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<