开发者

Performance of Serialized Objects in C++

开发者 https://www.devze.com 2022-12-27 20:11 出处:网络
I\'m wondering if there is a fast way to dump an STL set to disk and then read it back later. The internal structure of a set is a binary tree, so if I serialize it naively, when I read it back the

I'm wondering if there is a fast way to dump an STL set to disk and then read it back later.

The internal structure of a set is a binary tree, so if I serialize it naively, when I read it back the program will have to go though the process of inserting each element again. I think this is slow even if it is read back in correct order, correct me if I am wrong.

Is there a way to "dump" the memory containing th开发者_如何学Ce set into disk and then read it back later? That is, keep everything in binary format, thus avoiding the re-insertion.

Do the boost serialization tools do this?

Thanks!

EDIT: oh I should probably read, http://www.parashift.com/c++-faq-lite/serialization.html I will read it now... no it doesn't really help


As each set element is somewhere on the heap, you cannot just dump the structure to disk. You therefore need a proper serialization routine that goes through each element.

To read the element back again, you can use "hints", which allow you to hint to the insert method where the element should be inserted. This can bring the construction of the set back to linear complexity instead of n log n.


No, and if you are actually reading it back from a hard disk (or probably any permanent storage), the mechanical part will be the bottleneck.

If you put the container in a contiguous block of memory, that block must have some free space, and reading that wasted space from the disk wastes time… and disk space.

This is classic premature optimization.

If you really find yourself needing it, Boost Interprocess has (relatively) serialization-friendly containers.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号