php memcached 队列,php memcache或是memcached 来实现消息队列

/**

* 使用共享内存的PHP循环内存队列实现

* 支持多进程, 支持各种数据类型的存储

* 注: 完成入队或出队操作,尽快使用unset(), 以释放临界区

*

* @author [email protected]

* @created 2009-12-23

*/

class ShmQueue

{

private $maxQSize = 0; // 队列最大长度

private $front = 0; // 队头指针

private $rear = 0;  // 队尾指针

private $blockSize = 256;  // 块的大小(byte)

private $memSize = 25600;  // 最大共享内存(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); // 申请进入临界区

$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); // 出临界区, 释放信号量

}

}

/*

// 进队操作

$shmq = new ShmQueue();

$data = ‘test data‘;

$shmq->enQueue($data);

unset($shmq);

// 出队操作

$shmq = new ShmQueue();

$data = $shmq->deQueue();

unset($shmq);

*/

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值