FastJson耗时

FastJson耗时FastJson代码质量不是很高,容错率不如Jackson和Gson;但速度的确比Jackson和Gson快。但调试代码时发现FastJson耗时严重,研究之后发现FastJson第一次执行时,因为初始化的原因的确很慢,一个简单JsonString转JsonObject都需100ms,但之后再次执行时速度就很快了。而且测试表明1.2.9版本的初始化比1.2.4快30%,建议及时更新FastJson版本。给个例子体会:longstartTime=System.currentTi

FastJson代码质量不是很高,容错率不如Jackson和Gson;但速度的确比Jackson和Gson快。但调试代码时发现FastJson耗时严重,研究之后发现FastJson第一次执行时,因为初始化的原因的确很慢,一个简单JsonString转JsonObject都需100ms,但之后再次执行时速度就很快了。而且测试表明1.2.9版本的初始化比1.2.4快30%,建议及时更新FastJson版本。

给个例子体会:

        long startTime = System.currentTimeMillis();
        JSONObject jsonObject = JSONObject.parseObject("{\"i\":27,\"zoom\":5,\"j\":15,\"style\":\"MAP_STYLE_SAT_GRAY\"}");
        System.out.println(System.currentTimeMillis() - startTime);

        startTime = System.currentTimeMillis();
        JSONObject jsonObject1 = JSONObject.parseObject("{\"i\":23,\"zoom\":4,\"j\":11,\"style\":\"MAP_STYLE_SAT_GRAY\"}");
        System.out.println(System.currentTimeMillis() - startTime);

        startTime = System.currentTimeMillis();
        JSON.toJSONString(jsonObject);
        System.out.println(System.currentTimeMillis() - startTime);

        startTime = System.currentTimeMillis();
        JSON.toJSONString(jsonObject1);
        System.out.println(System.currentTimeMillis() - startTime);

结果:

127
0
23
0

 

今天的文章FastJson耗时分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/12669.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注