# 使用协程的优势
Swoole是高性能异步框架,正因为异步所以高性能,但是异步也有异步的不好,写逻辑代码有时候就非常的不方便,需要多层嵌套回调,弄得代码的可读性很差维护起来非常的不方便,那么如何解决这个弊端呢?那就是使用协程。
SwooleDistributed框架提供了一套基于yield关键字的协程写法。
#回调风格和协程风格的区别
举例说明:
回调风格:
```php
/**
* mysql 测试
* @throws \Server\CoreBase\SwooleException
*/
public function mysql_test()
{
$this->mysql_pool->dbQueryBuilder->select('*')->from('account')->where('sex', 1);
$this->mysql_pool->query(function ($result) {
print_r($result);
$this->destroy();
});
}
```
协程风格:
```php
/**
* mysql 测试
* @throws \Server\CoreBase\SwooleException
*/
public function mysql_test()
{
$mySqlCoroutine = $this->mysql_pool->dbQueryBuilder->select('*')->from('account')->where('sex', 1)->coroutineSend();
$result = yield $mySqlCoroutine;
print_r($result);
$this->destroy();
}
```
上述代码还只是基础,想想看多次请求并且依赖的情况
回调风格:
```php
public function test($callback)
{
$this->redis_pool->get('test',function ($uid)use($callback){
$this->mysql_pool->dbQueryBuilder->select('*')->from('account')->where('uid', $uid);
$this->mysql_pool->query(function ($result)use($callback) {
call_user_func($callback,$result);
});
});
}
```
协程风格:
```php
public function test()
{
$redisCoroutine = $this->redis_pool->getCoroutine()->get('test');
$uid = yield $redisCoroutine;
$mySqlCoroutine = $this->mysql_pool->dbQueryBuilder->select('*')->from('account')->where('uid', $uid)->coroutineSend();
$result = yield $mySqlCoroutine;
return $result;
}
```
上面的代码是在一个model中,按照以往的回调风格,controller调用这个model还需要传进去一个回调函数才能获取到值(我觉得这么做的人一定会疯),而协程风格你只需要按部就班的return结果就行了。和同步的代码唯一的区别就是多了一个yield关键字。
好了我们再看调用这个model的controller怎么写。
回调风格:
```php
/**
* 非协程测试
*/
public function http_testNOCoroutine()
{
$this->testModel = $this->loader->model('TestModel', $this);
$this->testModel->test(function($result){
$this->http_output->end($result);
});
}
```
协程风格:
```php
/**
* 协程测试
*/
public function http_testCoroutine()
{
$this->testModel = $this->loader->model('TestModel', $this);
$result = yield $this->testModel->test();
$this->http_output->end($result);
}
```
同样只是要多加一个yield关键字。是不是很方便~,注意只有这个model的方法内使用了yield,控制器调用的时候才需要加yield关键字。普通的方法是不需要的,当然你加了也不会报错。
# 协程中的异常?
swooleDistributed框架已经将协程的使用变得很方便了,至于异常和平常的写法一毛一样。
```php
public function test_exceptionII()
{
$mySqlCoroutine = $this->mysql_pool->dbQueryBuilder->select('*')->from('account')->where('uid', 10303)->coroutineSend();
$result = yield $mySqlCoroutine;
throw new \Exception('test');
}
```
无论你是在model中还是在controller中,还是在model的model中。。。。
总之throw出来就行,上一层使用try可以捕获到错误。
这里还有个小小的体验优化,当报错一直到controller层的时候,会被controller的onExceptionHandle捕获到,你可以重写这个函数实现异常情况下的客户端回复。
# 协程的嵌套
支持无限级的嵌套。
# 协程的调度顺序
调节yield的位置即可调节接收的顺序。
```php
$redisCoroutine = $this->redis_pool->getCoroutine()->get('test');
$uid = yield $redisCoroutine;
$mySqlCoroutine = $this->mysql_pool->dbQueryBuilder->select('*')->from('account')->where('uid', $uid)->coroutineSend();
$result = yield $mySqlCoroutine;
```
上面的代码调度顺序是redis_send->redis_rev->mysql_send->mysql_rev。
```php
$redisCoroutine = $this->redis_pool->getCoroutine()->get('test');
$mySqlCoroutine = $this->mysql_pool->dbQueryBuilder->select('*')->from('account')->where('uid', 123)->coroutineSend();
$uid = yield $redisCoroutine;
$result = yield $mySqlCoroutine;
```
上面的代码调度顺序是redis_send->mysql_send->redis_rev->mysql_rev。
- Introduction
- SD 3.X文档连接
- 导言
- 用户案例
- 基于Swoole扩展分布式全栈开发框架
- 选择SD框架助力企业开发
- 捐赠SwooleDistributed项目
- 框架性能报告
- 更新日志
- VIP服务福利
- 安装与配置
- 【推荐】全自动安装部署
- 环境要求
- 使用Composer安装/更新SD框架
- 通过Docker安装
- 代码结构
- 启动命令
- 服务器配置
- 服务器基础配置server.php
- 客户端协议配置client.php
- business.php
- log.php
- 微服务及集群配置consul.php
- fileHeader.php
- mysql.php
- redis.php
- 定时任务配置timerTask.php
- 服务器端口配置ports.php
- catCache.php
- 验证服务启动成功
- 微服务-Consul
- 日志工具-GrayLog
- 集群-Cluster
- 内核优化
- 入门教学
- 开发流程
- 开发前必读
- 开发规范
- 基本流程
- 框架入口
- Model数据模型
- Controller控制器
- 协程
- 协程基础
- 迭代器
- 调度器
- 使用协程的优势
- 通过协程的方法屏蔽异步同步的区别
- Select多路选择器
- 协程Sleep
- 通用协程方法
- 设置超时
- 设置无异常
- 设置降级函数
- initAsynPools
- dump
- 封装器与路由器
- 封装器
- sendToUid
- 路由器
- sendToUids
- 对象池
- 扩展组件
- 中间件
- Redis使用介绍
- RedisAsynPool
- Redis具体使用
- sendToAll
- RedisRoute
- Redis+Lua
- Mysql使用介绍
- MysqlAsynPool
- Mysql返回值
- 如何获取构建的mysql语句
- 如何执行一个SQL
- 如何执行事务
- stopTask
- Mysql具体使用
- 异步客户端
- Loader
- MqttClient
- model
- SdTcpRpcPool
- task
- HttpClientPool
- view
- TcpClientPool
- AMQP
- initialization
- Memory
- destory
- Cache
- Lock
- Pool
- EventDispatcher
- Process
- Cluster
- TimerTask
- Reload
- Consul
- Context
- 自定义进程
- 进程间RPC
- $http_input
- CatCache
- $http_output
- TimerCallBack
- 专题
- HTTP专栏
- TCP专栏
- 基础知识
- WebSocket专栏
- 微服务
- Consul配置
- RPC
- REST
- AMQP异步任务系统
- MQTT简易服务器
- Docker化以及资源编排
- 快速搭建公司内部统一的开发环境
- 使用HTTPS/WSS
- 订阅/发布
- 游戏专题
- 类介绍
- AppServer
- clearState
- onOpenServiceInitialization
- SwooleDistributedServer
- get_instance
- kickUid
- bindUid
- unBindUid
- coroutineUidIsOnline
- coroutineCountOnline
- setTemplateEngine
- isWebSocket
- isTaskWorker
- getSocketName
- initAsynPools
- addAsynPool
- getAsynPool
- getServerAllTaskMessage
- Controller
- onExceptionHandle
- send
- sendToUid
- sendToUids
- sendToAll
- sendToGroup
- close
- getContext
- defaultMethod
- $redis_pool
- $mysql_pool
- $request_type
- $fd
- $uid
- $client_data
- $request
- $response
- $loader
- $logger
- $server
- $config
- Model
- initialization
- destory
- View
- Task
- stopTask
- HttpInput
- postGet
- post
- get
- getPost
- getAllPostGet
- getAllHeader
- getRawContent
- cookie
- getRequestHeader
- server信息
- getRequestMethod
- getRequestUri
- getPathInfo
- HttpOutput
- setStatusHeader
- setContentType
- setHeader
- end
- setCookie
- endFile
- 单元测试