书栈网 · BookStack 本次搜索耗时 0.015 秒,为您找到 941 个相关结果.
  • swoole_event_dispatch

    swoole_event_dispatch swoole_event_dispatch 仅执行一次reactor->wait 操作,在Linux 平台下相当手工调用一次epoll_wait 。与swoole_event_wait 不同的是,swoole_event_wait 在底层内部维持了循环。 void swoole_event_dispat...
  • swoole_event_wait

    swoole_event_wait swoole_event_wait 函数原型: void swoole_event_wait ( void ); PHP5.4之前的版本没有在ZendAPI中加入注册shutdown函数。所以swoole无法在脚本结尾处自动进行事件轮询。所以低于5.4的版本,需要在你的PHP脚本结尾处加swoole_...
  • swoole_event_cycle

    swoole_event_cycle 使用实例 swoole_event_cycle 定义事件循环周期执行函数。此函数会在每一轮事件循环结束时调用。 bool swoole_event_cycle ( callable $callback , bool $before = false ); $callback 要设置的回...
  • 当SWOOLE遇上SERVER

    2102 2019-04-22 《Swoole入门教程》
    前言 Server之初 监听:正确的地点 Swoole Server做了什么? 彪悍的Swoole工具箱 Swoole Server Swoole Client Swoole Event Swoole Async Swoole Process Swoole Buffer Swoole Table Swoole入门系列的其他 前...
  • swoole_event_exit

    swoole_event_exit swoole_event_exit 退出事件轮询,此函数仅在Client程序中有效。 void swoole_event_exit ( void )
  • swoole_event_write

    swoole_event_write SOCKET缓存区已满后,Swoole的底层逻辑 swoole_event_write 用于PHP自带stream/sockets扩展创建的socket,使用fwrite/socket_send等函数向对端发送数据。当发送的数据量较大,socket写缓存区已满,就会发送阻塞等待或者返回EAGAIN错误。 sw...
  • swoole_event_defer

    swoole_event_defer 使用示例 swoole_event_defer 在下一个事件循环开始时执行函数。 swoole_event_defer ( mixed $callback_function ); swoole_event_defer 的回调函数会在当前EventLoop 的事件循环结束、下一次事件循环开始前执行。 ...
  • swoole_event_add

    swoole_event_add 函数原型 参数 返回值 使用实例 回调函数 swoole_event_add 将一个socket加入到底层的reactor 事件监听中。此函数可以用在Server 或Client 模式下。 函数原型 bool swoole_event_add ( mixed $sock , mixed $read...
  • swoole_timer_after

    swoole_timer_after 协程模式 使用示例 swoole_timer_after 在指定的时间后执行函数。 int swoole_timer_after ( int $after_time_ms , mixed $callback_function ); swoole_timer_after 函数是一个一次性定时器...
  • Swoole的进程模型

    1423 2019-04-22 《Swoole入门教程》
    前言 并发之始 进程模型 进程模型与数据共享 小结 回顾 前言 前文再续,就书接上一回,随着与Server、TCP、Protocol的邂逅,Swoole终于迎来了自己的故事,今天,我们来聊聊Swoole的进程模型。 前边几篇东西虽然标题是Swoole,其主要讲的是操作系统、计算机网络方面的知识,包括一点点笔者自己的私货,今天终于放假了,...