序列化基准
我正在编写一个基准来计算 OpenFast 的序列化/反序列化所需的时间
问题是当我在计算所花费的时间时,我是否还应该考虑解析和设置字段值所花费的时间以及反序列化时的时间。
我用java写的,那么Nano和Milli哪个精度好?纳秒计算中有什么我应该担心的问题吗?
谢谢。
I'm writing a benchmark for computing the time taken for serialization/de-serialization for OpenFast
The question is when I'm computing the time taken, should I also take into account the time taken for parsing and setting the values for fields and also the same while de-serialization.
I'm writing it in java so what accuray is good Nano or Milli? Are there any issues in nano second computation that I should be worried about?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自《Effective Java》,第 2 版,第 69 项:
From Effective Java, Edition 2, Item 69: