擴充 ZF2 Redis Zend Framework 2 Redis Extend - key正則

來源:互聯網
上載者:User

標籤:style   blog   http   color   io   os   使用   ar   strong   

隨著業務的進展,現在需要直接操作Redis 資料!

其中就需要擷取指定首碼的key,就好像操作mysql一樣,需要擷取指定記錄段!

ZF2強大的支援了redis緩衝方式,但是當我運用ZF2 redis緩衝原廠模式的時候,竟然發現ZF2不支援redis的keys方法!

//感謝博主:http://my.oschina.net/cart/

接下來給大家詳述如何擴充ZF2 Redis:

\module\Application\src\Application\Service\RedisExtendService.php<?phpnamespace Application\Service;use Zend\Cache\Storage\Adapter\Redis;class RedisExtendService extends Redis{    public function __construct($options = null)    {        parent::__construct($options);    }    /**     * support regular     *     * @param sting $keys                 */    public function getKeys($keys)    {        return $this->getRedisResource()->keys($keys);    }}
OK,擴充完畢!

indexAction中直接使用我們擴充好的ZF2 Redis,只要你樂意擴充,不想局限於ZF2,那麼你就可以使用很多Redis原始方法:

<?phpnamespace Application\Controller;use Zend\Mvc\Controller\AbstractActionController;use Zend\View\Model\ViewModel;class IndexController extends AbstractActionController{    private static $redis;        private function redis(){        if(!self::$redis){$config = $this->getServiceLocator()->get(‘config‘);            self::$redis = new \Application\Service\RedisExtendService($config[‘Redis‘]);        }        return self::$redis;    }    public function indexAction(){        var_dump($this->redis()->getKeys(‘Member_*‘));var_dump($this->redis()->getKeys(‘Item_*‘));var_dump($this->redis()->getKeys(‘Product_*‘));    }}


有了此文,大家可以舉一反三,大量的繼承擴充ZF2!

而且你的擴充是高效,可移植的!



擴充 ZF2 Redis Zend Framework 2 Redis Extend - key正則

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.