01:13:45 GMT so I have allowed my redis server to consume too much ram and so when it's doing a background save, that operation locks up the server due to running out of RAM. 01:14:35 GMT my question is, if I do a `SHUTDOWN SAVE` will that NOT use double the RAM? Will it basically just "lock" any further write attempts and save the data directly to disk without duplicating it ram first? 01:27:57 GMT brb 01:34:41 GMT back :) 10:39:44 GMT help 18:19:52 GMT I've just install redis and trying to get a value from known primary key http://pastebin.com/82QWCkPj 18:20:26 GMT armicron: so? Redis is telling you what's wrong ;) 18:21:24 GMT ok, HMGET 12234342:id.... name gives right answer 18:21:34 GMT but what if I want to retrive a whole document? 18:21:47 GMT Redis has commands for different types of keys 18:21:51 GMT see https://redis.io/commands 18:22:02 GMT HGETALL would give you all fields and values of a Hash 18:22:21 GMT badboy_, thank you