略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: SyncSemaphore

2024-04-19

The SyncSemaphore class

(PECL sync >= 1.0.0)

简介

A cross-platform, native implementation of named and unnamed semaphore objects.

A semaphore restricts access to a limited resource to a limited number of instances. Semaphores differ from mutexes in that they can allow more than one instance to access a resource at one time while a mutex only allows one instance at a time.

类摘要

class SyncSemaphore {
/* 方法 */
public __construct(string $name = ?, int $initialval = 1, bool $autounlock = true)
public lock(int $wait = -1): bool
public unlock(int &$prevcount = ?): bool
}

目录

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/class.syncsemaphore.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3