异步任务分发系统
- 消息持久化到leveldb
- http任务put接口
- json rpc推到处理接口
- 保证局部有序,相同同key的消息保证顺序执行
- post http://address/put 格式[form]: type=xxx key=xxx data=xxxx
- curl curl -i -X POST
-H "Content-Type:application/x-www-form-urlencoded"
-d "type=test"
-d "key="
-d "data=fffffff"
'http://127.0.0.1:8081/put'
- 对局部顺序有要求,不恰当的例子:异步点赞和取消赞,快速操作,如果不保证顺序,最终结果可能和预期不一致