# README
rpc 使用说明
#rpc 分真实队列处理和无队列处理
#1. 队列rpc,一般以一次性大批数据需要异步处理,比如一次性广播邮件或者群发送奖励,需要一次性填充队列数据,这样数据就会形成发送队列,依次执行完rpc异步操作,一般需要一个线程定时检查和处理该队列数据,如果队列存在数据则立即处理,处理的队列数据量根据业务和策划需要,以及系统响应情况来决定,比如给队列的最大数据列限制1000,大于这个量的,则将最先加入队列的数据删掉,依次执行后面的,定时处理的时间,也需要约定多长时间来检查处理一次,一般看服务器处理情况,如果线程少可以处理快一些,时间定的小一点,或者其他的情况。
#2. 非队列rpc,虽然没有真实加队列处理,但是底层的tcp也会有网络层依次处理,只要tcp调用,就直接发送处理出去,不需要等待。
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Constants
act call params.
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author