PHP 8.4.24 Released!

The SyncSharedMemory class

(PECL sync >= 1.1.0)

Introduzione

A cross-platform, native, consistent implementation of named shared memory objects.

Shared memory lets two separate processes communicate without the need for complex pipes or sockets. There are several integer-based shared memory implementations for PHP. Named shared memory is an alternative.

Synchronization objects (e.g. SyncMutex) are still required to protect most uses of shared memory.

Sommario della classe

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

Indice dei contenuti

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top