当前位置:网站首页>## 简讲protobuf-从原理到使用
## 简讲protobuf-从原理到使用
2022-08-05 05:25:00 【木棉-小健】
简讲protobuf-从原理到使用
protobuf是google团队开发的用于高效存储和读取结构化数据的工具。什么是结构化数据呢,正如字面上表达的,就是带有一定结构的数据。
xml、json也可以用来存储此类结构化数据,但是使用protobuf表示的数据能更加高效,并且将数据压缩得更小,大约是json格式的1/10,xml格式的1/20。
定义message结构
//关卡目标单个目标数据
protobuf将一种结构称为一个message类型
message GoalItem {
int32 id = 1; //目标id
int32 itemType = 2; //奖励类型
int32 itemId = 3; //奖励id
int32 itemNum = 4; //奖励数量
int32 status = 5; //0未完成,1完成未领取,2完成已领取
}
我这里以游戏关卡奖励为例
Field最前面的required,optional,repeated是这个Filed的规则,分别表示该数据结构中这个Filed有且只有1个,可以是0个或1个,可以是0个或任意个。optional后面可以加default默认值,如果不加,数据类型的默认为0,字符串类型的默认为空串。repeated后面加[packed=true]会使用新的更高效的编码方式。
注意:使用required规则的时候要谨慎,因为以后结构若发生更改,这个Filed若被删除的话将可能导致兼容性的问题。
边栏推荐
- flink cdc 目前支持Gauss数据库源吗
- The 25 best free games on mobile in 2020
- [Problem has been resolved]-Virtual machine error contains a file system with errors check forced
- Disk management and file systems
- Q 2020, the latest senior interview Laya soul, do you know?
- [问题已处理]-虚拟机报错contains a file system with errors check forced
- input detailed file upload
- The use of three parameters of ref, out, and Params in Unity3D
- D39_Vector
- Will intelligent operation and maintenance replace manual operation and maintenance?
猜你喜欢
sql server duplicate values are counted after
The cocos interview answers you are looking for are all here!
The 25 best free games on mobile in 2020
What are some things that you only know when you do operation and maintenance?
格式化代码缩进的小技巧
[issue resolved] - jenkins pipeline checkout timeout
input详解之文件上传
Chengyun Technology was invited to attend the 2022 Alibaba Cloud Partner Conference and won the "Gathering Strength and Going Far" Award
Vim tutorial: vimtutor
The hook of the operation of the selenium module
随机推荐
Mina的长连接和短连接
js 使用雪花id生成随机id
May I ask how to read the binlog of the two tables of hologres through flink sql, and then how to join?
七种让盒子水平垂直居中的方法
Collision, character controller, Cloth components (cloth), joints in the Unity physics engine
Collection of error records (write down when you encounter them)
Seven Ways to Center a Box Horizontally and Vertically
Tencent greetings function SCF - entry instructions
Mina disconnects and reconnects
The hook of the operation of the selenium module
Insight into the general trend of the Internet, after reading this article, you will have a thorough understanding of Chinese domain names
[ingress]-ingress使用tcp端口暴露服务
Drools规则引擎快速入门(一)
摆脱极域软件的限制
Come, come, let you understand how Cocos Creator reads and writes JSON files
Network Troubleshooting Basics - Study Notes
disabledDate 日期选择器 datePicker
selenium learning
js判断文字是否超过区域
无法导入torchvision.io.read_image