I'm design a string (UTF8) pool for my software, the basic interface of the pool is:
HANDLE SetString(String); and
String GetString(HANDLE);
HANDLE may ba a int or wharever.
It may contain 10000000 strings (length is between 0~~255) (that's why I think I need compress), and compress/decompress speed is VERY important.
So, which algorithm is best?
Thank you all !