クラス Memcache_Queue
{
private $memcache;
プライベート $name;
プライベート $プレフィックス;
function __construct($maxSize, $name, $memcache, $prefix = "__memcache_queue__")
{
if ($memcache == null) {
throw new Exception("memcache オブジェクトが null、最初にオブジェクトを新規作成します。") ;
}
$this->memcache = $memcache;
$this->name = $name;
$this->prefix = $prefix;
$this->maxSize = $maxSize;
$this->front = 0;
$this->real = 0;
$this->サイズ = 0;
}
function __get($name)
{
return $this->get($name);
}
function __set($name, $value)
{
$this->add($name, $value);
$this を返す;
}
関数 isEmpty()
{
return $this->size == 0;
}
関数 isFull()
{
return $this->size == $this->maxSize;
}
function enQueue($data)
{
if ($this->isFull()) {
throw new Exception("Queue is Full");
}
$this->increment("size");
$this->set($this->real, $data);
$this->set("real", ($this->real + 1) % $this->maxSize);
$this を返す;
}
function deQueue()
{
if ($this->isEmpty()) {
throw new Exception("Queue is Empty");
}
$this->decrement("サイズ");
$this->delete($this->front);
$this->set("フロント", ($this->フロント + 1) % $this->maxSize);
$this を返す;
}
関数 getTop()
{
return $this->get($this->front);
}
関数 getAll()
{
return $this->getPage();
}
function getPage($offset = 0, $limit = 0)
{
if ($this->isEmpty() || $this->size < $offset) {
return null;
}
$keys[] = $this->getKeyByPos(($this->front + $offset) % $this->maxSize);
$num = 1;
for ($pos = ($this->front + $offset + 1) % $this->maxSize; $pos != $this->real; $pos = ($pos + 1) % $this ->maxSize)
{
$keys[] = $this->getKeyByPos($pos);
$num++;
if ($limit > 0 && $limit == $num) {
break;
}
}
return array_values($this->memcache->get($keys));
}
関数 makeEmpty()
{
$keys = $this->getAllKeys();
foreach ($keys as $value) {
$this->delete($value);
}
$this->delete("real");
$this->delete("フロント");
$this->delete("サイズ");
$this->delete("maxSize");
}
プライベート関数 getAllKeys()
{
if ($this->isEmpty())
{
return array();
}
$keys[] = $this->getKeyByPos($this->front);
for ($pos = ($this->front + 1) % $this->maxSize; $pos != $this->real; $pos = ($pos + 1) % $this-> maxSize)
{
$keys[] = $this->getKeyByPos($pos);
}
$keys を返します。
}
プライベート関数 add($pos, $data)
{
$this->memcache->add($this->getKeyByPos($pos), $data);
$this を返す;
}
プライベート関数 increment($pos)
{
return $this->memcache->increment($this->getKeyByPos($pos));
}
プライベート関数 decrement($pos)
{
$this->memcache->decrement($this->getKeyByPos($pos));
}
プライベート関数 set($pos, $data)
{
$this->memcache->set($this->getKeyByPos($pos), $data);
$this を返す;
}
プライベート関数 get($pos)
{
return $this->memcache->get($this->getKeyByPos($pos));
}
プライベート関数 delete($pos)
{
return $this->memcache->delete($this->getKeyByPos($pos));
}
プライベート関数 getKeyByPos($pos)
{
return $this->prefix . $this->name . $pos;
}
}