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
Well, if you want the fastest serialization possible, then you can just write your own serialization class and give it methods to serialize each of the POD types.
The less safety you bring in, the faster it'll run and the harder it'll be to debug, however there is only a fixed number of built-in, so you could enumerate them.
class Buffer
{
public:
inline Buffer& operator<<(int i); // etc...
private:
std::deque mData;
};
I must admit I don't understand your problem:
There might be better approaches that serialization.