json系列(三)cjson,rapidjson,yyjson解析性能对比
前言
本篇对cjson,rapidjson,yyjson三种json反序列化工具的性能进行对比。
有json样本数据如下:
实验环境:
cpu:Xeon
cpu主频:2.20GHz
以下示例均未对字段的安全性进行检查。各示例的字段安全性检查参考json系列第一篇“cjson,rapidjson,yyjson解析示例”。
一、cjson反序列化性能
1 #include<stdio.h>
2 #include<sys/time.h>
3
4 #include"cJSON.h"
5
6 // g++ -g -o cjson_speed_test -std=c++11 cjson_speed_test.c cJSON.c
7
8 int main()
9 {
10 int cnt = 0;
11 timeval st, et;
12
13 cJSON *json_root;
14 char str_buf[1024] = "{\"uri\":\"/uriCSh56j30cbGa\",\"host\":\"www.baidu.com\",\"uagent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.64\",\"accept\":\"*/*\",\"method\":\"GET\",\"date\":\"Mon, 12 Jul 21 10:35:26 GMT\",\"resp_content_type\":\"video/fli\",\"status\":200,\"resp_content_length\":20480,\"timestamp\":\"2021-07-12T02:38:13.074829000\",\"traffic_id\":1057153235624398,\"protocol\":\"http\",\"src_ip\":\"112.1.101.40\",\"src_port\":22291,\"dst_ip\":\"112.2.81.190\",\"dst_port\":80,\"random_code\":7449212903698783717,\"feature_code\":\"y0BMEwnJ7RFICUAC5FKYkStTLVw=\"}";
15
16 gettimeofday(&st, NULL);
17 while(1) {
18 json_root = cJSON_Parse(str_buf);
19
20 cJSON_GetObjectItem(json_root, "protocol");
21 cJSON_GetObjectItem(json_root, "uri");
22
23 cJSON_GetObjectItem(json_root, "host");
24 cJSON_GetObjectItem(json_root, "uagent");
25
26 cJSON_GetObjectItem(json_root, "src_port");
27 cJSON_GetObjectItem(json_root, "dst_port");
28
29 cJSON_GetObjectItem(json_root, "timestamp");
30 cJSON_GetObjectItem(json_root, "feature_code");
31
32 cJSON_GetObjectItem(json_root, "src_ip");
33 cJSON_GetObjectItem(json_root, "dst_ip");
34
35 cJSON_GetObjectItem(json_root, "traffic_id");
36 cJSON_GetObjectItem(json_root, "random_code");
37
38 cJSON_Delete(json_root);
39
40 cnt++;
41 gettimeofday(&et, NULL);
42 if(et.tv_sec - st.tv_sec >= 10) {
43 break;
44 }
45 }
46
47 printf("deserialization per second:%d\n", cnt/10);
48 return 0;
49 }
反序列化性能:
二、rapidjson反序列化性能
rapidjson有两种解析方法,一种是Parse,另一种是ParseInsitu(原位解析)。区别在于ParseInsitu不需要进行malloc操作,在原来的字符串空间中进行字符串反序列化,弊端是原来的字符串会被修改。这里选用Parse方法。
1 #include<stdio.h>
2 #include<sys/time.h>
3
4 #include "rapidjson/rapidjson.h"
5 #include "rapidjson/document.h"
6 #include "rapidjson/stringbuffer.h"
7 #include "rapidjson/writer.h"
8
9 // g++ -g -o rapidjson_speed_test -std=c++11 rapidjson_speed_test.c
10
11 int main()
12 {
13 int cnt = 0;
14 timeval st, et;
15
16 char str_buf[1024] = "{\"uri\":\"/uriCSh56j30cbGa\",\"host\":\"www.baidu.com\",\"uagent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.64\",\"accept\":\"*/*\",\"method\":\"GET\",\"date\":\"Mon, 12 Jul 21 10:35:26 GMT\",\"resp_content_type\":\"video/fli\",\"status\":200,\"resp_content_length\":20480,\"timestamp\":\"2021-07-12T02:38:13.074829000\",\"traffic_id\":1057153235624398,\"protocol\":\"http\",\"src_ip\":\"112.1.101.40\",\"src_port\":22291,\"dst_ip\":\"112.2.81.190\",\"dst_port\":80,\"random_code\":7449212903698783717,\"feature_code\":\"y0BMEwnJ7RFICUAC5FKYkStTLVw=\"}";
17 char str_buf_tmp[1024] = {0};
18
19 rapidjson::Document parse_doc;
20
21 gettimeofday(&st, NULL);
22 while(1) {
23
24 parse_doc.Parse(str_buf);
25 parse_doc.FindMember("protocol")->value.GetString();
26 parse_doc.FindMember("uri")->value.GetString();
27
28 parse_doc.FindMember("host")->value.GetString();
29 parse_doc.FindMember("resp_content_type")->value.GetString();
30
31 parse_doc.FindMember("src_port")->value.GetInt();
32 parse_doc.FindMember("dst_port")->value.GetInt();
33
34 parse_doc.FindMember("timestamp")->value.GetString();
35 parse_doc.FindMember("feature_code")->value.GetString();
36
37 parse_doc.FindMember("src_ip")->value.GetString();
38 parse_doc.FindMember("dst_ip")->value.GetString();
39
40 parse_doc.FindMember("traffic_id")->value.GetUint64();
41 parse_doc.FindMember("random_code")->value.GetUint64();
42
43 cnt++;
44 gettimeofday(&et, NULL);
45 if(et.tv_sec - st.tv_sec >= 10) {
46 break;
47 }
48 }
49
50 printf("deserialization per second:%d\n", cnt/10);
51 return 0;
52 }
反序列化性能:
三、yyjson反序列化性能
1 #include<stdio.h>
2 #include<sys/time.h>
3
4 #include "yyjson.h"
5
6 // g++ -g -o yyjson_speed_test -std=c++11 yyjson_speed_test.c yyjson.c
7
8 int main()
9 {
10 int cnt = 0;
11 timeval st, et;
12
13 long value2;
14 char str_buf[1024] = "{\"uri\":\"/uriCSh56j30cbGa\",\"host\":\"www.baidu.com\",\"uagent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.64\",\"accept\":\"*/*\",\"method\":\"GET\",\"date\":\"Mon, 12 Jul 21 10:35:26 GMT\",\"resp_content_type\":\"video/fli\",\"status\":200,\"resp_content_length\":20480,\"timestamp\":\"2021-07-12T02:38:13.074829000\",\"traffic_id\":1057153235624398,\"protocol\":\"http\",\"src_ip\":\"112.1.101.40\",\"src_port\":22291,\"dst_ip\":\"112.2.81.190\",\"dst_port\":80,\"random_code\":7449212903698783717,\"feature_code\":\"y0BMEwnJ7RFICUAC5FKYkStTLVw=\"}";
15
16 gettimeofday(&st, NULL);
17 while(1) {
18
19 yyjson_doc *doc = yyjson_read(str_buf, strlen(str_buf), 0);
20 yyjson_val *root = yyjson_doc_get_root(doc);
21
22 yyjson_get_str(yyjson_obj_get(root, "protocol"));
23 yyjson_get_str(yyjson_obj_get(root, "uri"));
24
25 yyjson_get_str(yyjson_obj_get(root, "host"));
26 yyjson_get_str(yyjson_obj_get(root, "uagent"));
27
28 yyjson_get_int(yyjson_obj_get(root, "src_port"));
29 yyjson_get_int(yyjson_obj_get(root, "dst_port"));
30
31 yyjson_get_str(yyjson_obj_get(root, "timestamp"));
32 yyjson_get_str(yyjson_obj_get(root, "feature_code"));
33
34 yyjson_get_str(yyjson_obj_get(root, "src_ip"));
35 yyjson_get_str(yyjson_obj_get(root, "dst_ip"));
36
37 yyjson_get_uint(yyjson_obj_get(root, "traffic_id"));
38 yyjson_get_uint(yyjson_obj_get(root, "random_code"));
39
40 yyjson_doc_free(doc);
41
42 cnt++;
43 gettimeofday(&et, NULL);
44 if(et.tv_sec - st.tv_sec >= 10) {
45 break;
46 }
47 }
48
49 printf("deserialization per second:%d\n", cnt/10);
50 return 0;
51 }
反序列化性能:
四、结论
yyjson的反序列化高性能真是让我感到欣喜,是cjson三倍以上、rapidjson Parse方法的10倍以上。若编译添加-O2优化参数,yyjson的测试结果更加惊喜,并且yyjson的cpu使用率更低。
另外,yyjson的序列化性能也是三者中最高的。
推荐大家使用yyjson!
json系列(三)cjson,rapidjson,yyjson解析性能对比的更多相关文章
- 开源 JSON 库解析性能对比( Jackson / Json.simple / Gson )
Json 已成为当前服务器与 web 应用之间数据传输的公认标准. 微服务及分布式架构经常会使用 Json 来传输此类文件,因为这已经是 webAPI 的事实标准. 不过正如许多我们习以为常的事情一样 ...
- MySQL并发复制系列三:MySQL和MariaDB实现对比
http://blog.itpub.net/28218939/viewspace-1975856/ 并发复制(Parallel Replication) 系列三:MySQL 5.7 和MariaDB ...
- Go_18: Golang 中三种读取文件发放性能对比
Golang 中读取文件大概有三种方法,分别为: 1. 通过原生态 io 包中的 read 方法进行读取 2. 通过 io/ioutil 包提供的 read 方法进行读取 3. 通过 bufio 包提 ...
- Golang 中三种读取文件发放性能对比
Golang 中读取文件大概有三种方法,分别为: 1. 通过原生态 io 包中的 read 方法进行读取 2. 通过 io/ioutil 包提供的 read 方法进行读取 3. 通过 bufio 包提 ...
- Java爬虫系列三:使用Jsoup解析HTML
在上一篇随笔<Java爬虫系列二:使用HttpClient抓取页面HTML>中介绍了怎么使用HttpClient进行爬虫的第一步--抓取页面html,今天接着来看下爬虫的第二步--解析抓取 ...
- ThreadPoolExecutor系列三——ThreadPoolExecutor 源码解析
ThreadPoolExecutor 源码解析 本文系作者原创,转载请注明出处:http://www.cnblogs.com/further-further-further/p/7681826.htm ...
- 《HTML5编程之旅》系列三:WebSockets 技术解析
本文主要研究HTML5 WebSockets的使用方法,它是HTML5中最强大的通信功能,定义了一个全双工的通信信道,只需Web上的一个Socket即可进行通信,能减少不必要的网络流量并降低网络延迟. ...
- ES系列(三):网络通信模块解析
ES是一个分布式搜索引擎,其除了用户提供必要的通信服务外,集群间也必须保持紧密的通信联系,才能在必要的时候给出正确的结果.其则必然涉及到各种繁多且要求高的通信场景,那么如何实现高性能的通信,则是其必须 ...
- java基础解析系列(三)---HashMap
java基础解析系列(三)---HashMap java基础解析系列 java基础解析系列(一)---String.StringBuffer.StringBuilder java基础解析系列(二)-- ...
随机推荐
- 【记录一个问题】linux+opencv+cuvid解码1080P视频,当使用CUDA核函数的时候,必然崩溃
崩溃的信息如下: 1 OpenCV(4.1.0-dev) Error: Gpu API call (invalid configuration argument) in videoDecPostPro ...
- 阿里巴巴如何进行测试提效 | 阿里巴巴DevOps实践指南
编者按:本文源自阿里云云效团队出品的<阿里巴巴DevOps实践指南>,扫描上方二维码或前往:https://developer.aliyun.com/topic/devops,下载完整版电 ...
- 巅峰对决之Swarm、Kubernetes、Mesos
另外一篇 https://www.sohu.com/a/157185937_287582 Docker Docker是一个主流容器管理工具,它是第一个基于Linux容器(LXC)的[2],但是现在被r ...
- java抽象类案例
1 package face_09; 2 /* 3 * 雇员示例: 4 * 需求:公司中程序员有姓名,工号,薪水,工作内容. 5 * 项目经理除了有姓名,工号,薪水,还有奖金,工作内容. 6 * 对给 ...
- python类和函数
#/usr/bin/python #coding=utf-8 class Car(): def __init__(self,name,year): self.name = name self.year ...
- LVM搭建
q前提:挂盘,分区.用 fdisk -l 可以查看. 使用 fdisk /dev/sdb 分区,分区后进行partprobe使分区生效.之后进行 pv,vg,lv 的创建. pvcreate /de ...
- 学习JAVAWEB第十六天
今天做了一个简单的登陆界面,HTML+CSS太不熟悉了,明天还得接着做
- 6. java IO 流
一.流的分类: * 1.操作数据单位:字节流.字符流 * 2.数据的流向:输入流.输出流 * 3.流的角色:节点流.处理流 *二.流的体系结构 * 抽象基类 节点流(或文件 ...
- 如何使用 pytorch 实现 yolov3
前言 看了 Yolov3 的论文之后,发现这论文写的真的是很简短,神经网络的具体结构和损失函数的公式都没有给出.所以这里参考了许多前人的博客和代码,下面进入正题. 网络结构 Yolov3 将主干网络换 ...
- 理解https中的安全及其实现原理
Google的一份网络上的 HTTPS 加密透明报告(数据截至2022年1月)中指出HTTPS 连接的普及率在过去几年激增,互联网上排名前 100 位的非 Google 网站HTTPS 使用情况为:9 ...