gpt4 book ai didi

php - 我们可以用 PHP 而不是 NodeJS 创建 GRPC 服务器吗?

转载 作者:行者123 更新时间:2023-12-04 21:02:24 26 4
gpt4 key购买 nike

我是 GRPC 的新手,我阅读了快速入门指南和 PHP 基础知识。但是我看到很多人都在使用 NodeJS 来运行 grpc 的服务器端。但我想要实现的是在 grpc 的两端使用 PHP 并仅在 PHP 中创建服务器 + 客户端。

So it's like Client will send the informtation to server and Server will process the information realtime.



我已经检查了测试用例文件 ServerTest.php 代码如下
class ServerTest extends PHPUnit_Framework_TestCase
{
public function setUp()
{
}

public function tearDown()
{
}

/**
* @expectedException InvalidArgumentException
*/
public function testInvalidConstructor()
{
$server = new Grpc\Server('invalid_host');
}

/**
* @expectedException InvalidArgumentException
*/
public function testInvalidAddHttp2Port()
{
$this->server = new Grpc\Server([]);
$this->port = $this->server->addHttp2Port(['0.0.0.0:0']);
}

/**
* @expectedException InvalidArgumentException
*/
public function testInvalidAddSecureHttp2Port()
{
$this->server = new Grpc\Server([]);
$this->port = $this->server->addSecureHttp2Port(['0.0.0.0:0']);
}
}

我不确定这是否可能,任何帮助都会受到高度评价:

谢谢

最佳答案

roadrunner可能有帮助。这是一个带有 php 工作池的 golang 前端服务器。

关于php - 我们可以用 PHP 而不是 NodeJS 创建 GRPC 服务器吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41563891/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com