From: antirez Date: Thu, 13 May 2010 11:36:42 +0000 (+0200) Subject: very strong speedup in saving time performance when there are many integers in the... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/32a6651355cc75f19f40b7d7a4cbd419ea19f39f?hp=32a6651355cc75f19f40b7d7a4cbd419ea19f39f very strong speedup in saving time performance when there are many integers in the dataset. Instead of decoding the object before to pass them to the rdbSaveObject layer we check asap if the object is integer encoded and can be written on disk as an integer. ---