fastest c++ serialization?

后端 未结 11 2419
花落未央
花落未央 2021-02-18 18:08

Good morning all,

I\'m searching for a very fast binary serialization technique for c++. I only need to serialize data contained in objects (no pointers etc.). I\'d like

11条回答
  •  广开言路
    2021-02-18 18:33

    If you're on a Unix system, mmap on the file is the way to do what you want to do.

    See http://msdn.microsoft.com/en-us/library/aa366556(VS.85).aspx for an equivalent on windows.

提交回复
热议问题