当前位置: 首页 > 软件库 > 程序开发 > 常用工具包 >

pecl-ev

php的事件拓展
授权协议 PHP
开发语言 PHP
所属分类 程序开发、 常用工具包
软件类型 开源软件
地区 不详
投 递 者 井旺
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

ev是一个php的事件拓展,通过PECL进行安装,以libev library为接口,是一个用C语言编写的事件循环类库,所以ev是一个高效的事件拓展。同时可通过ev让php进行异步操作。

目前仅对GNU / Linux平台提供支持,今后可能会对其他平台提供支持。

采用的是PHP协议。

范例

 stop();
    // Stop the watcher if further calls cause more than 10 iterations
    Ev::iteration() >= 10 and $w->stop();
});

// Create stopped timer. It will be inactive until we start it ourselves
$w_stopped = EvTimer::createStopped(10, 5, function($w) {
    echo "Callback of a timer created as stopped\n";

    // Stop the watcher after 2 iterations
    Ev::iteration() >= 2 and $w->stop();
});

// Loop until Ev::stop() is called or all of watchers stop
Ev::run();

// Start and look if it works
$w_stopped->start();
echo "Run single iteration\n";
Ev::run(Ev::RUN_ONCE);

echo "Restart the second watcher and try to handle the same events, but don't block\n";
$w2->again();
Ev::run(Ev::RUN_NOWAIT);

$w = new EvTimer(10, 0, function() {});
echo "Running a blocking loop\n";
Ev::run();
echo "END\n";
?>

输出

2 seconds elapsed
is called every second, is launched after 2 seconds
iteration = 1
is called every second, is launched after 2 seconds
iteration = 2
is called every second, is launched after 2 seconds
iteration = 3
is called every second, is launched after 2 seconds
iteration = 4
is called every second, is launched after 2 seconds
iteration = 5
Run single iteration
Callback of a timer created as stopped
Restart the second watcher and try to handle the same events, but don't block
Running a blocking loop
is called every second, is launched after 2 seconds
iteration = 8
is called every second, is launched after 2 seconds
iteration = 9
is called every second, is launched after 2 seconds
iteration = 10
END
  • 软件简介 ev是一个php的事件拓展,通过PECL进行安装,以libev library为接口,是一个用C语言编写的事件循环类库,所以ev是一个高效的事件拓展。同时可通过ev让php进行异步操作。 目前仅对GNU / Linux平台提供支持,今后可能会对其他平台提供支持。 采用的是PHP协议。 范例 stop(); // Stop the watcher if further calls caus

  •       最近有一个小项目需要一个后台服务器,其实在线数并不大,另一直对服务器编程技术中的epoll/iocp/异步之类的有所了解,但始终没有试过,了解到跨平台的库libev,libevent等在windows下面已经iocp,同时又有php.net又有一个对应的扩展pecl-libevent-0.0.4,于是说干就干,找了一篇参考文档http://vladimirbarbarosh.blogs

  • pecl安装php的ev扩展,安装完毕后php.ini中加入扩展extension=ev.so,然后重启php-fpm出现以下报错 PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/ev.so' - /usr/lib64/php/modules/ev.so: undefined sym

  • https://pecl.php.net 是php的C扩展仓库,有一些并未与php绑定,需要我们自己安装,安装教程请参考这个, 下面我们列一些常见常用的扩展,他们安装方式几乎是一样的: redis扩展 操作redis的扩展 mongodb扩展 操作mongodb的扩展 atom扩展 一个实现snowflake算法的扩展,实现分布式唯一id seaslog扩展 记录日志 zookeeper扩展 操作

  • 简介 此扩展提供了Libev库——一个用C语言编写的高性能全功能事件循环。 Libev是一个事件循环:一个寄存器对某些事件(例如文件描述符是可读的或超时发生)进行注册,它将管理这些事件源并为程序提供事件。 为此,必须通过执行事件循环处理程序来或多或少地完成对进程(或线程)的控制,然后通过回调机制来传递事件。 你通过注册所谓的事件观察者来记录某些事件,然后通过启动观察者将其交给Libev。 Note

  • php的libev扩展 提供了一些类似nodejs异步调用的方式, 用途很多,如文件状态监视,流阻塞等待异步 pecl库的,默认不安装,需要自己在pecl下弄个过来 php manual地址:http://www.php.net/manual/zh/ev.examples.php 如果不知道libev是啥可以看这个http://dirlt.com/libev.html 这里罗列下具体手册内的代码,

 相关资料
  • PECL 的全称是 The PHP Extension Community Library ,是一个开放的并通过 PEAR(PHP Extension and Application Repository,PHP 扩展和应用仓库)打包格式来打包安装的 PHP 扩展库仓库。通过 PEAR 的 Package Manager 的安装管理方式,可以对 PECL 模块进行下载和安装。与以往的多数 PEAR

  • 请注意: Transactional topologies 已经摒弃 -- 使用 Trident 框架替代。 Storm guarantees data processing (保证数据处理)至少一次。关于 Storm 问的最多的问题就是 "当 tuples 重发时,你会如何做呢?你会重复计算吗?" Storm 0.7.0 版本介绍了 transactional topologies.使得你可以在

  • pecl install xlswriter ​ # 添加 extension = xlswriter.so 到 ini 配置

  • Hprose 是高性能远程对象服务引擎(High Performance Remote Object Service Engine)的缩写。 它是一个先进的轻量级的跨语言跨平台面向对象的高性能远程动态通讯中间件。它不仅简单易用,而且功能强大。你只需要稍许的时间去学习,就能用它轻松构建跨语言跨平台的分布式应用系统了。 Hprose 支持众多编程语言,例如: AAuto Quicker ActionS

  • 可靠的扩展 目前开源社区有不少人为Sanic框架编写了插件,这些插件很可能会在将来的某个时间帮助到你,比如缓存、模板渲染、api文档生成、Session...等等 官方也维护了一个扩展列表,见extensions

  • mpx-fetch mpx-fetch提供了一个实例xfetch ,该实例包含以下api fetch(config) 正常的promisify风格的请求方法 参数: {Object} config config 可指定以下属性: url 类型:string 设置请求url method 类型:string 设置请求方式,默认为GET data 类型:Object 设置请求参数 params 类型: