laravel中redis pipeline用法說明

$res = Redis::pipeline(function($pipe) use($params) { for ($i = 0; $i < 1000; $i++) { $pipe->get("key:$i", $i); } });   pipeline和multi的區別:html multi:將多個操做當成一個事務執行 pipeline: 讓(多條)執行命令簡單
相關文章
相關標籤/搜索