RabbitMQ模式的PHP库.zip

时间:2022-07-31 04:11:59
【文件属性】:
文件名称:RabbitMQ模式的PHP库.zip
文件大小:18KB
文件格式:ZIP
更新时间:2022-07-31 04:11:59
类库下载-RabbitMQ模式的PHP库 rabbitmq(MQ)全称为Message Queue, 消息队列是一种应用程序对应用程序的通信方法。应用程序通过读写出入队列的消息来通信,而无需专用连接来链接它们。消息传递指的是程序之间通过在消息中发送数据进行通信,而不是通过直接调用彼此来通信,直接调用通常是用于诸如远程过程调用的技术。排队指的是应用程序通过 队列来通信。队列的使用除去了接收和发送应用程序同时执行的要求。其中较为成熟的MQ产品有IBM WEBSPHERE MQ等等。 <?php require __DIR__ . '/../vendor/autoload.php'; use PhpAmqpLib\Connection\AMQPLazyConnection; use Thumper\ConnectionRegistry; $connections = array(     'default' => new AMQPLazyConnection('localhost', 5672, 'guest', 'guest', '/') ); $registry = new ConnectionRegistry($connections, 'default');
【文件预览】:
Thumper-master
----README.md(4KB)
----CHANGELOG.md(369B)
----composer.json(931B)
----phpunit.xml.dist(1KB)
----CONTRIBUTING.md(1KB)
----TODO.md(108B)
----CONDUCT.md(2KB)
----config()
--------config.php(301B)
----LICENSE.md(1KB)
----lib()
--------Thumper()

网友评论