溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在PHP項目中共享內(nèi)存

發(fā)布時間:2021-01-15 16:43:47 來源:億速云 閱讀:140 作者:Leah 欄目:開發(fā)技術(shù)

怎么在PHP項目中共享內(nèi)存?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1、shmop  編譯時需要開啟 --enable-shmop 參數(shù)

實例:

$shm_key = ftok(__FILE__, 't');
/**
 開辟一塊共享內(nèi)存
int $key , string $flags , int $mode , int $size 
$flags: a:訪問只讀內(nèi)存段
    c:創(chuàng)建一個新內(nèi)存段,或者如果該內(nèi)存段已存在,嘗試打開它進行讀寫
    w:可讀寫的內(nèi)存段
    n:創(chuàng)建一個新內(nèi)存段,如果該內(nèi)存段已存在,則會失敗
$mode: 八進制格式 0655
$size: 開辟的數(shù)據(jù)大小 字節(jié)
 */
$shm_id = shmop_open($shm_key, "c", 0644, 1024);
/**
 * 寫入數(shù)據(jù) 數(shù)據(jù)必須是字符串格式 , 最后一個指偏移量
 * 注意:偏移量必須在指定的范圍之內(nèi),否則寫入不了
 * 
 */
$size = shmop_write($shm_id, 'songjiankang', 0);
echo "write into {$size}";
#讀取的范圍也必須在申請的內(nèi)存范圍之內(nèi),否則失敗
$data = shmop_read($shm_id, 0, 100);
var_dump($data);
#刪除 只是做一個刪除標志位,同時不在允許新的進程進程讀取,當在沒有任何進程讀取時系統(tǒng)會自動刪除
shmop_delete($shm_id);
#關(guān)閉該內(nèi)存段
shmop_close($shm_id);

2、用 Semaphore 擴展中的 sem 類函數(shù) (用起來更方便,類似 key-value 格式)

// Get the file token key
$key = ftok(__DIR__, 'a');
// 創(chuàng)建一個共享內(nèi)存
$shm_id = shm_attach($key, 1024, 777); // resource type
if ($shm_id === false) {
  die('Unable to create the shared memory segment');
}
#設(shè)置一個值
shm_put_var($shm_id, 111, 'value');
#刪除一個key
//shm_remove_var($shm_id, 111);
#獲取一個值
$value = shm_get_var($shm_id, 111);
var_dump($value);
#檢測一個key是否存在
// var_dump(shm_has_var($shm_id, 111));
#從系統(tǒng)中移除
shm_remove($shm_id);
#關(guān)閉和共享內(nèi)存的連接
shm_detach($shm_id);

注意:這兩種方式不通用的

一個用共享內(nèi)存和信號量實現(xiàn)的消息隊列

/**
* 使用共享內(nèi)存和信號量實現(xiàn)
* 
* 支持多進程, 支持各種數(shù)據(jù)類型的存儲
* 注: 完成入隊或出隊操作,盡快使用unset(), 以釋放臨界區(qū)
*
*/
class ShmQueue
{
  private $maxQSize = 0; // 隊列最大長度
  private $front = 0; // 隊頭指針
  private $rear = 0; // 隊尾指針
  private $blockSize = 256; // 塊的大小(byte)
  private $memSize = 25600; // 最大共享內(nèi)存(byte)
  private $shmId = 0;
  private $filePtr = './shmq.ptr';
  private $semId = 0;
  public function __construct ()
  {
    $shmkey = ftok(__FILE__, 't');
    $this->shmId = shmop_open($shmkey, "c", 0644, $this->memSize);
    $this->maxQSize = $this->memSize / $this->blockSize;
    // 申請一個信號量
    $this->semId = sem_get($shmkey, 1);
    sem_acquire($this->semId); // 申請進入臨界區(qū)
    $this->init();
  }
  private function init ()
  {
    if (file_exists($this->filePtr)) {
      $contents = file_get_contents($this->filePtr);
      $data = explode('|', $contents);
      if (isset($data[0]) && isset($data[1])) {
        $this->front = (int) $data[0];
        $this->rear = (int) $data[1];
      }
    }
  }
  public function getLength ()
  {
    return (($this->rear - $this->front + $this->memSize) % ($this->memSize)) /
         $this->blockSize;
  }
  public function enQueue ($value)
  {
    if ($this->ptrInc($this->rear) == $this->front) { // 隊滿
      return false;
    }
    $data = $this->encode($value);
    shmop_write($this->shmId, $data, $this->rear);
    $this->rear = $this->ptrInc($this->rear);
    return true;
  }
  public function deQueue ()
  {
    if ($this->front == $this->rear) { // 隊空
      return false;
    }
    $value = shmop_read($this->shmId, $this->front, $this->blockSize - 1);
    $this->front = $this->ptrInc($this->front);
    return $this->decode($value);
  }
  private function ptrInc ($ptr)
  {
    return ($ptr + $this->blockSize) % ($this->memSize);
  }
  private function encode ($value)
  {
    $data = serialize($value) . "__eof";
    echo '';
    echo strlen($data);
    echo '';
    echo $this->blockSize - 1;
    echo '';
    if (strlen($data) > $this->blockSize - 1) {
      throw new Exception(strlen($data) . " is overload block size!");
    }
    return $data;
  }
  private function decode ($value)
  {
    $data = explode("__eof", $value);
    return unserialize($data[0]);
  }
  public function __destruct ()
  {
    $data = $this->front . '|' . $this->rear;
    file_put_contents($this->filePtr, $data);
    sem_release($this->semId); // 出臨界區(qū), 釋放信號量
  }
}
/*
 * // 進隊操作 $shmq = new ShmQueue(); $data = 'test data'; $shmq->enQueue($data);
 * unset($shmq); // 出隊操作 $shmq = new ShmQueue(); $data = $shmq->deQueue();
 * unset($shmq);
 */

linux下 用 ipc命令查看 ,用 ipcrm 命令可以刪除

關(guān)于怎么在PHP項目中共享內(nèi)存問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責聲明:本站發(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)容。

php
AI