您好,登錄后才能下訂單哦!
如何在Laravel框架中實現(xiàn)一個redis集群?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
在app/config/database.php中配置如下:
'redis' => array( 'cluster' => true, 'default' => array( 'host' => '172.21.107.247', 'port' => 6379, ), 'redis1' => array( 'host' => '172.21.107.248', 'port' => 6379, ),
其中cluster選擇為true,接下來就可以作集群使用了;
如果把session的driver設(shè)置為redis,則可以使用其集群功能了:
我們來看下session的實現(xiàn),當(dāng)我們在代碼中這樣寫:
Session::put('test', 124);
實際的執(zhí)行流程是這樣的:
Illuminate\Support\Facades\Session Illuminate\Support\Facades\Facade Illuminate\Session\Facade::app['session']->put Illuminate\Session\Facade::app['session']為Illuminate\Session\SessionManager Illuminate\Support\Manager::__call
Session會根據(jù)返回創(chuàng)建driver
$this->app['config']['session.driver']
即配置文件中配置的,這里我們配置為redis
Illuminate\Session\SessionManager::Illuminate\Session\SessionManager
最終由Illuminate\Session\Store來負責(zé)put的調(diào)用
而Store類負責(zé)存儲的類是Illuminate\Session\CacheBasedSessionHandler
后者又將請求轉(zhuǎn)發(fā)給$this->app['cache']->driver($driver)
……
經(jīng)過一系列代碼追查,存儲類為Predis\Client\Database,看其構(gòu)造函數(shù):
public function __construct(array $servers = array()) { if (isset($servers['cluster']) && $servers['cluster']) { $this->clients = $this->createAggregateClient($servers); } else { $this->clients = $this->createSingleClients($servers); } }
如果設(shè)置為集群,則調(diào)用createAggregateClient方法
protected function createAggregateClient(array $servers) { $servers = array_except($servers, array('cluster')); return array('default' => new Client(array_values($servers))); }
這里會把所有服務(wù)器放在default組中
實際存數(shù)據(jù)的類是Predis\Client,這里有根據(jù)配置創(chuàng)建服務(wù)器的代碼,具體可以自己看下;
Predis\Cluster\PredisClusterHashStrategy類負責(zé)計算key的hash,關(guān)鍵函數(shù):
getHash
getKeyFromFirstArgument
而Predis\Cluster\Distribution\HashRing負責(zé)服務(wù)器環(huán)的維護,關(guān)鍵函數(shù)
addNodeToRing
get
hash
大概原理是這樣,如執(zhí)行以下redis命令
get ok
會將ok作crc32運算得到一個hash值
所有服務(wù)器按一定算法放到一個長度默認為128的數(shù)組中,每個服務(wù)器在其中占幾項,由以下決定:
權(quán)重/總權(quán)重*總的服務(wù)器數(shù)量*128,可參考Predis\Cluster\Distribution\HashRing::addNodeToRing
方法
每一項的hash值是按服務(wù)器ip:端口的格式,作crc32計算的
protected function addNodeToRing(&$ring, $node, $totalNodes, $replicas, $weightRatio) { $nodeObject = $node['object']; $nodeHash = $this->getNodeHash($nodeObject); $replicas = (int) round($weightRatio * $totalNodes * $replicas); for ($i = 0; $i < $replicas; $i++) { $key = crc32("$nodeHash:$i"); $ring[$key] = $nodeObject; } }
看完上述內(nèi)容,你們掌握如何在Laravel框架中實現(xiàn)一個redis集群的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。