PHP 大会日本 2024

SyncSharedMemory 类

(PECL sync >= 1.1.0)

简介

命名共享内存对象的跨平台、原生、一致的实现。

共享内存允许两个独立的进程进行通信,而无需复杂的管道或套接字。PHP 有几种基于整数的共享内存实现。命名共享内存是一种替代方案。

同步对象(例如 SyncMutex)仍然需要保护大多数共享内存的使用。

类概要

class SyncSharedMemory {
/* 方法 */
public __construct(string $name, int $size)
public first(): bool
public read(int $start = 0, int $length = ?)
public size(): int
public write(string $string = ?, int $start = 0)
}

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top