Skip to content

Instantly share code, notes, and snippets.

@thiagozs
Created September 25, 2013 15:21
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save thiagozs/6701223 to your computer and use it in GitHub Desktop.
BenchMark Redis com lista de 1 objeto serializado

BenchMark Redis com lista de 1 objeto serializado

#####json redis 127.0.0.1:6379> debug object lista Value at:0x7f072ac17470 refcount:1 encoding:linkedlist serializedlength:339 lru:1696873 lru_seconds_idle:10 Resultado -> serializedlength:339

#####messagepack + json redis 127.0.0.1:6379> debug object lista Value at:0x7f072ac16b90 refcount:1 encoding:linkedlist serializedlength:341 lru:1696878 lru_seconds_idle:0 Resultado -> serializedlength:341

#####messagepack + object serialized redis 127.0.0.1:6379> debug object lista Value at:0x7f072ac17470 refcount:1 encoding:linkedlist serializedlength:658 lru:1696890 lru_seconds_idle:10 Resultado -> serializedlength:658

#####messagepack + object serialized + zlib redis 127.0.0.1:6379> debug object lista Value at:0x7f072ac16b90 refcount:1 encoding:linkedlist serializedlength:533 lru:1696962 lru_seconds_idle:10 Resultado -> serializedlength:533

#####messagepack + json + zlib redis 127.0.0.1:6379> debug object lista Value at:0x7f072ac17470 refcount:1 encoding:linkedlist serializedlength:274 lru:1696969 lru_seconds_idle:10 Resultado -> serializedlength:274

#####json + zlib redis 127.0.0.1:6379> debug object lista Value at:0x7f072ac16b90 refcount:1 encoding:linkedlist serializedlength:267 lru:1696981 lru_seconds_idle:0 Resultado -> serializedlength:267

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment