Memory data structure likes Chan in Golang, implemented based on shared memory and Mutex locks. It can be used as high performance message queue in memory.
- Don't have to warry about data synchronization issues when use swoole channel in multiple processes
- Swoole Channel has to be created in the parent process, and to be used in the child processes
<?php
$chan = new Swoole\Channel(1024 * 256);
$n = 100000;
$bytes = 0;
if (pcntl_fork() > 0)
{
echo "Parent process\n";
for ($i = 0; $i < $n; $i++)
{
$data = str_repeat('A', rand(100, 200));
if ($chan->push($data) === false)
{
echo "The channel is full\n";
usleep(1000);
$i--;
continue;
}
$bytes += strlen($data);
}
echo "Total pushed data size: $bytes bytes\n";
var_dump($chan->stats());
}
else
{
echo "Child process\n";
for ($i = 0; $i < $n; $i++)
{
$data = $chan->pop();
if ($data === false)
{
echo "The channel is empty\n";
usleep(1000);
$i--;
continue;
}
$bytes += strlen($data);
}
echo "Total popped data size: $bytes bytes\n";
var_dump($chan->stats());
}
Construct a swoole channel with fixed size.
- The minimum size of a swoole channel is 64KB.
- Exceptions will be thrown if there is not enough memory.
Write and push data into swoole channel.
- Data can be any non-empty PHP variable, the variable will be serialized if it is not string type.
- If size of the data is more than 8KB, swoole channel will use temp files storage.
- The function will return true if the write operation is succeeded, or return false if there is not enough space.
Read and pop data from swoole channel.
- If the channel is empty, the function will return false, or return the unserialized data.
Get stats of swoole channel: the numbers of queued elements and total size of the memory used by the queue:
<?php
array(
"queue_num" => 10,
"queue_bytes" => 161,
);