Fast compression / decompression
|
|
String FastCompress(const String& s)
String FastCompress(const void *s, int sz)
Compresses data using extremely fast algorithm (current implementation is using LZ4). It is intended for internal purposes to reduce memory consumption. Format should not be considered stable and should not be saved to persistent storage (use plugin/LZ4 if you need that).
String FastDecompress(const String& data)
Decompresses data compressed by FastCompress.
|