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基础解析系列(二)-- ...
随机推荐
- i-Urban Renovation使用3D Tiles可视化鸟取县Munakata建筑状态
Cesium中文网:http://cesiumcn.org/ | 国内快速访问:http://cesium.coinidea.com/ 日本的鸟取县,使用i-Urban Renovation appl ...
- fidder无法下载证书的最佳解决办法
为什么有的小伙伴安装fidder不好使,手机无法下载证书? 1.安装一定要去官网安装! 一定要去官网安装! 一定要去官网安装!官方网址:https://www.telerik.com/download ...
- condition_variable中的和wait_once和notify_one及notify_all实例代码
// ConsoleApplication6.cpp : 定义控制台应用程序的入口点. #include "stdafx.h" #include<thread> #in ...
- Python36 使用Redis 构建分布式爬虫(未完)
很长时间未更新了,人懒了. 最近有不少的东西,慢慢写吧,最近尝试了一下python 使用Redis 来构建分布式爬虫: 单体爬虫有很多缺点,但是在学习过程中能够学习爬虫的基本理念与运行模式,在后期构建 ...
- python for循环while循环数据类型内置方法
while 条件: 条件成立之后循环执行的子代码块 每次执行完循环体子代码之后都会重新判断条件是否成立 如果成立则继续执行子代码如果不成立则退出 break用于结束本层循环 ### 一:continu ...
- mysql自连接?
一.自连接 /* 自己查询自己 把一张表看成是两张表. 表的设计. */ SELECT * from depart; -- 具体的查询方法,查询 name ,并给添加别名. select d1.nam ...
- bom-setTimeout
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- NSString为何要用copy修饰,而不是strong?
NSString本身是无所谓的,但是如果一个 NSString 指针指向了一个 NSMutableString的内存空间的话,如果使用 strong 修饰的话,如果你在别处修改这个值的话,那么原来的值 ...
- C语言中的typedef跟define的区别
今天用C语言练习时涉及到了typedef和define的使用问题,那么他们的区别是啥?这种情况下为什么要用typedef?哪种情况下为什么要用define呢? 学习C的时候的你是否考虑过这个问题呢? ...
- 02网络编程( socket套接字+TCP粘包 )
目录 02 网络编程 一.socket套接字编程 二.简易代码模板 2.1 服务端 2.2 客户端 三.通信循环及代码优化 四.黏包现象 五.struct模块 六.简易版本报头 七.上传文件数据 * ...