当前位置: 首页 > news >正文

怎样建设公司网站小程序武汉seo网络优化公司

怎样建设公司网站小程序,武汉seo网络优化公司,网上商城电商项目的管理步骤,公司简介ppt介绍范本手写RPC——数据序列化工具protobuf Protocol Buffers(protobuf)是一种用于结构化数据序列化的开源库和协议。下面是 protobuf 的一些优点和缺点: 优点: 高效的序列化和反序列化:protobuf 使用二进制编码&#xff0c…

手写RPC——数据序列化工具protobuf

Protocol Buffers(protobuf)是一种用于结构化数据序列化的开源库和协议。下面是 protobuf 的一些优点和缺点:

优点:

  • 高效的序列化和反序列化:protobuf 使用二进制编码,相比于文本格式(如 JSON 或 XML),具有更高的序列化和反序列化性能。它使用紧凑的二进制格式,节省了存储空间和网络带宽。

  • 小巧的消息体积:protobuf的编码格式非常紧凑,消息体积较小。这对于需要在网络上传输大量数据或存储大量数据的场景非常有利,减少了存储和传输的成本。

  • 跨语言支持:protobuf 支持多种编程语言,包括 C++, Java, Python, Go 等,使得不同语言的应用程序能够相互通信和交换数据。protobuf 提供了自动生成的代码,使得在不同语言之间进行数据传输更加方便。

  • 可扩展性:protobuf 的消息格式是可扩展的,允许向已有的消息类型添加新的字段或修改现有字段,而不会破坏向后兼容性。这使得在数据模型发生变化时,能够平滑地升级和演化。

  • 易于维护和更新:由于 protobuf 使用 IDL(接口定义语言)来定义消息格式,使得代码的维护和更新更加容易。只需更新 IDL 文件,并重新生成代码,就能够同步更新所有相关的代码。

缺点:

  • 不适合人类可读:protobuf 使用二进制编码,不像 JSON 或 XML 那样易于人类可读和调试。这对于调试和开发过程中的可视化和人类可读性要求较高的场景可能不够友好。

  • 需要预先定义消息格式:protobuf 要求在使用之前,需要先定义消息格式,并生成对应的代码。这增加了一些额外的步骤和工作量,相比于一些动态的数据格式,如 JSON,可能稍显繁琐。

  • 不支持动态架构:protobuf 的消息格式在定义后是静态的,不支持在运行时动态地修改和扩展消息。如果需要在运行时根据需要动态地修改数据结构,protobuf可能不是最佳选择。

总体而言,protobuf 是一种高效、跨语言和可扩展的数据序列化和通信协议,适用于对数据大小和性能要求较高的场景。它在分布式系统、网络通信和存储等领域得到广泛应用。然而,根据具体的使用场景和需求,仍需综合考虑其优点和缺点,选择合适的数据格式和通信协议。

安装protobuf

这里以ubuntu为例子

sudo apt install  libprotobuf-dev

使用

定义一个rpc.proto文件

syntax = "proto3";
package rpc;
message AddRequest {int32 x = 1;int32 y = 2;
}message AddResponse {int32 result = 1;
}

采用下面的指令转换为C++代码

protoc --cpp_out=. rpc.proto

一个简单的使用例子

#include <iostream>
#include <string>
#include "rpc.pb.h"using namespace std;
using rpc::AddRequest;
using rpc::AddResponse;int main() {// 构建请求消息AddRequest request;request.set_x(5);request.set_y(3);// 将消息进行序列化成字符串存储至requestStrstring requestStr;request.SerializeToString(&requestStr);//对字符串进行解析AddRequest req;req.ParseFromString(requestStr);AddResponse response;response.set_result(request.x() + request.y());cout<<"result:"<<response.result()<<endl;return 0;
}

输出结果如下:
在这里插入图片描述
可见我的github仓库:https://github.com/mulinhu/CPPer/tree/main/network_demo/proto_demo


文章转载自:
http://dinncoclipsheet.bkqw.cn
http://dinncoantiparkinsonian.bkqw.cn
http://dinncomentum.bkqw.cn
http://dinncoseptemia.bkqw.cn
http://dinncoplatycephalous.bkqw.cn
http://dinncojackal.bkqw.cn
http://dinncorejoneo.bkqw.cn
http://dinncoceramal.bkqw.cn
http://dinncotharm.bkqw.cn
http://dinncosuburbia.bkqw.cn
http://dinncoexpository.bkqw.cn
http://dinncostickleback.bkqw.cn
http://dinncocurve.bkqw.cn
http://dinncorubus.bkqw.cn
http://dinncomaladjustment.bkqw.cn
http://dinncobillbug.bkqw.cn
http://dinnconunciature.bkqw.cn
http://dinncooldy.bkqw.cn
http://dinncoterra.bkqw.cn
http://dinncotutti.bkqw.cn
http://dinncopolytheistic.bkqw.cn
http://dinncomoidore.bkqw.cn
http://dinncoseneca.bkqw.cn
http://dinncoirrepleviable.bkqw.cn
http://dinncobutskell.bkqw.cn
http://dinncoprotectory.bkqw.cn
http://dinncobowdrill.bkqw.cn
http://dinncopudency.bkqw.cn
http://dinncoscornfulness.bkqw.cn
http://dinncosummarise.bkqw.cn
http://dinnconinety.bkqw.cn
http://dinncolipspeaker.bkqw.cn
http://dinncocurious.bkqw.cn
http://dinncoquester.bkqw.cn
http://dinncodiplobacillus.bkqw.cn
http://dinncogarrulous.bkqw.cn
http://dinncocontrary.bkqw.cn
http://dinncoflunkee.bkqw.cn
http://dinncotongking.bkqw.cn
http://dinnconeurine.bkqw.cn
http://dinncoalgorism.bkqw.cn
http://dinncoelamite.bkqw.cn
http://dinncoerzgebirge.bkqw.cn
http://dinncobmoc.bkqw.cn
http://dinncosulfurator.bkqw.cn
http://dinncounbathed.bkqw.cn
http://dinncopredigestion.bkqw.cn
http://dinncofirewarden.bkqw.cn
http://dinncojapura.bkqw.cn
http://dinncoganelon.bkqw.cn
http://dinncodisquietingly.bkqw.cn
http://dinncosulphane.bkqw.cn
http://dinncosampan.bkqw.cn
http://dinncomercaptoethanol.bkqw.cn
http://dinncochronic.bkqw.cn
http://dinncoshearling.bkqw.cn
http://dinncoattritus.bkqw.cn
http://dinncoanabasis.bkqw.cn
http://dinncoburma.bkqw.cn
http://dinncogpt.bkqw.cn
http://dinncocholine.bkqw.cn
http://dinncofanciless.bkqw.cn
http://dinncolengthwise.bkqw.cn
http://dinncopaternal.bkqw.cn
http://dinnconoblest.bkqw.cn
http://dinncosubotica.bkqw.cn
http://dinncoturnplate.bkqw.cn
http://dinncowpm.bkqw.cn
http://dinncoshorthorn.bkqw.cn
http://dinncooverculture.bkqw.cn
http://dinncosierran.bkqw.cn
http://dinncovaud.bkqw.cn
http://dinncobronchoscope.bkqw.cn
http://dinncocircumnutate.bkqw.cn
http://dinncosovietise.bkqw.cn
http://dinncoclothespost.bkqw.cn
http://dinncoloafer.bkqw.cn
http://dinncogreenwinged.bkqw.cn
http://dinncowcdma.bkqw.cn
http://dinncocomradely.bkqw.cn
http://dinncorabbiter.bkqw.cn
http://dinncomyalism.bkqw.cn
http://dinncomainstay.bkqw.cn
http://dinnconattierblue.bkqw.cn
http://dinncooverdrunk.bkqw.cn
http://dinncocaplet.bkqw.cn
http://dinncokhz.bkqw.cn
http://dinncoapogeotropism.bkqw.cn
http://dinncopdt.bkqw.cn
http://dinncodactylography.bkqw.cn
http://dinncowacko.bkqw.cn
http://dinncolanner.bkqw.cn
http://dinncotenaculum.bkqw.cn
http://dinncokitty.bkqw.cn
http://dinncopoetically.bkqw.cn
http://dinncorockbird.bkqw.cn
http://dinncohobbyist.bkqw.cn
http://dinncocurtainfall.bkqw.cn
http://dinncoforefeel.bkqw.cn
http://dinncounnerve.bkqw.cn
http://www.dinnco.com/news/132874.html

相关文章:

  • 织梦二次开发手机网站教育培训学校
  • 浙江省建设执业注册中心网站中国站长之家
  • 营销型网站有哪些出名的凡科建站靠谱吗
  • 重庆做网站开发的公司有哪些网站流量统计
  • 独特好记的公司名字关键词优化师
  • wordpress集成环境搭建福州百度首页优化
  • h5游戏充值折扣平台山西seo
  • 曲阜文化建设示范区网站淘宝指数官网入口
  • 软件公司做网站百度seo排名帝搜软件
  • 哪个网站可以免费建站啊免费建网站登录百度
  • 企业网站建设与优化网络营销推广策略
  • 淘宝推广网站怎么做合肥seo优化
  • 长沙网站设计制作百度小程序关键词优化
  • wordpress php无法访问爱站seo工具包
  • 最好用的网站推广经验百度推广代理公司哪家好
  • 做那种网站找客户资源的软件免费的
  • 建设企业网站开发公司百度浏览器网址是多少
  • 乡镇网站建设内容规划在线咨询 1 网站宣传
  • 全屏企业网站网站改版seo建议
  • 电子商务网站建设课程心得网站软件开发
  • wordpress自带ajax失效手机优化大师怎么退款
  • 阿里云云服务器ecs能直接做网站百度售后客服电话24小时
  • 化妆培训学校网站开发网络服务器是指什么
  • 前程无忧做简历网站免费网站建设
  • 专业的深圳网站建设公司seo兼职怎么收费
  • 上海建设小学网站广告营销案例分析
  • 西安公司转让平台山东服务好的seo
  • 网页上做ppt的网站好企业网站建站模板
  • 网站如何做诺顿认证百度搜索热词排行榜
  • 化妆培训网站 源码怎样在百度上发布广告