redis使用管道pipeline提升批量操作性能(php演示)
阿新 • • 發佈:2018-02-14
nds orm space nat less aca form file tro
Redis是一個TCP服務器,支持請求/響應協議。 在Redis中,請求通過以下步驟完成:
- 客戶端向服務器發送查詢,並從套接字讀取,通常以阻塞的方式,用於服務器響應。
- 服務器處理命令並將響應發送回客戶端。
如果需要一次執行多個redis命令,以往的方式需要發送多次命令請求,有redis服務器依次執行,並返回結果,
為了解決此類問題,設計者設計出了redis管道命令:
- 客戶端可以向服務器發送多個請求,而不必等待回復,並最終在一個步驟中讀取回復,從而大大增加了協議性能
做了測試,使用pipeline的時長為603.4ms,不使用則為10716.9ms,差距有18倍之多!
以下是代碼:
<?php namespace App\Http\Controllers;use Illuminate\Support\Facades\Redis; class LessonsController extends Controller { public function showProfile() { $this->G(‘t‘); // redis::pipeline(); for ($i=0; $i < 100000 ; $i++) { redis::set("test_{$i}", pow($i, 2)); redis::get(‘test_{$i}‘); } redis::exec(); $this->G(‘t‘,‘r‘); } public function G($start,$end=‘‘,$dec=4) { static $_info = array(); if (!empty($end)) { if(!isset($_info[$end])) $_info[$end] = microtime(TRUE); $sconds = number_format(($_info[$end]-$_info[$start]), $dec) * 1000; echo "{$sconds}ms<br />"; } else { $_info[$start] = microtime(TRUE); } } }
redis使用管道pipeline提升批量操作性能(php演示)