摘要:年月日前言小型服務數據基本是保存在本地更多是本地磁盤文件但是當部署多臺服務且需要共享確保每個服務都能共享到同一份數據數據存儲在內存中性能好配合持久化可確保數據完整設計方案通過自身配置實現使用作為存儲方案若設置了連接密碼則使用如下密碼測試代
Last-Modified: 2019年5月10日16:06:36
前言小型web服務, session數據基本是保存在本地(更多是本地磁盤文件), 但是當部署多臺服務, 且需要共享session, 確保每個服務都能共享到同一份session數據.
redis 數據存儲在內存中, 性能好, 配合持久化可確保數據完整.
設計方案 1. 通過php自身session配置實現# 使用 redis 作為存儲方案 session.save_handler = redis session.save_path = "tcp://127.0.0.1:6379" # 若設置了連接密碼, 則使用如下 session.save_path = "tcp://127.0.0.1:6379?auth=密碼"
測試代碼
"; $_SESSION["usertest".rand(1,5)]=1; var_dump($_SESSION); echo "";
輸出 ↓
array(2) { ["usertest1"]=> int(88) ["usertest3"]=> int(1) } usertest1|i:1;usertest3|i:1;
評價
優點: 實現簡單, 無需修改php代碼
缺點: 配置不支持多樣化, 只能應用于簡單場景
2. 設置用戶自定義會話存儲函數通過 session_set_save_handler() 函數設置用戶自定義會話函數.
session_set_save_handler ( callable $open , callable $close , callable $read , callable $write , callable $destroy , callable $gc [, callable $create_sid [, callable $validate_sid [, callable $update_timestamp ]]] ) : bool # >= php5.4 session_set_save_handler ( object $sessionhandler [, bool $register_shutdown = TRUE ] ) : bool
在配置完會話存儲函數后, 再執行 session_start() 即可.
具體代碼略, 以下提供一份 Memcached 的(來自Symfony框架代碼):
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SymfonyComponentHttpFoundationSessionStorageHandler; /** * MemcacheSessionHandler. * * @author Drak*/ class MemcacheSessionHandler implements SessionHandlerInterface { /** * @var Memcache Memcache driver. */ private $memcache; /** * @var int Time to live in seconds */ private $ttl; /** * @var string Key prefix for shared environments. */ private $prefix; /** * Constructor. * * List of available options: * * prefix: The prefix to use for the memcache keys in order to avoid collision * * expiretime: The time to live in seconds * * @param Memcache $memcache A Memcache instance * @param array $options An associative array of Memcache options * * @throws InvalidArgumentException When unsupported options are passed */ public function __construct(Memcache $memcache, array $options = array()) { if ($diff = array_diff(array_keys($options), array("prefix", "expiretime"))) { throw new InvalidArgumentException(sprintf( "The following options are not supported "%s"", implode(", ", $diff) )); } $this->memcache = $memcache; $this->ttl = isset($options["expiretime"]) ? (int) $options["expiretime"] : 86400; $this->prefix = isset($options["prefix"]) ? $options["prefix"] : "sf2s"; } /** * {@inheritdoc} */ public function open($savePath, $sessionName) { return true; } /** * {@inheritdoc} */ public function close() { return $this->memcache->close(); } /** * {@inheritdoc} */ public function read($sessionId) { return $this->memcache->get($this->prefix.$sessionId) ?: ""; } /** * {@inheritdoc} */ public function write($sessionId, $data) { return $this->memcache->set($this->prefix.$sessionId, $data, 0, time() + $this->ttl); } /** * {@inheritdoc} */ public function destroy($sessionId) { return $this->memcache->delete($this->prefix.$sessionId); } /** * {@inheritdoc} */ public function gc($maxlifetime) { // not required here because memcache will auto expire the records anyhow. return true; } /** * Return a Memcache instance * * @return Memcache */ protected function getMemcache() { return $this->memcache; } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/31440.html
摘要:最近在研究架構方面的知識,包括數據庫讀寫分離,緩存和隊列,集群,以及負載均衡,今天就來先學習下我在負載均衡中遇到的問題,那就是共享的問題。一負載均衡負載均衡把眾多的訪問量分擔到其他的服務器上,讓每個服務器的壓力減少。 最近在研究Web架構方面的知識,包括數據庫讀寫分離,Redis緩存和隊列,集群,以及負載均衡(LVS),今天就來先學習下我在負載均衡中遇到的問題,那就是session共享...
摘要:方法銷毀大于給定的所有數據,對本身擁有過期機制的系統如和而言,該方法可以留空。注意事項瀏覽器標簽腳本執行過程中,打開標簽訪問同一個腳本,會被,直到執行完畢。 概述 分布式session是實現分布式部署的前提, 當前項目由于歷史原因未實現分布式session, 但是由于在kubernets中部署多個pod時, 負載均衡的調用鏈太長, 導致會話不能保持, 所以迫切需要分布式session....
摘要:環境要求安裝了的主機本文示例環境為準備鏡像首先把所有需要用到的鏡像拉取下來容器編排是容器進行編排的工具,定義和運行多容器的應用,可以一條命令啟動多個容器。 環境要求:安裝了docker的主機 (本文示例環境為centos7.4) 準備鏡像 首先把所有需要用到的鏡像拉取下來 # nginx $ docker pull nginx # php & php-fpm $ docker pul...
閱讀 3463·2021-11-25 09:43
閱讀 1062·2021-11-15 11:36
閱讀 3313·2021-11-11 16:54
閱讀 3974·2021-09-27 13:35
閱讀 4364·2021-09-10 11:23
閱讀 5676·2021-09-07 10:22
閱讀 3032·2021-09-04 16:40
閱讀 769·2021-08-03 14:03