15:13:14 GMT I'm a bit confused. There is INCR, INCRBY and HINCRBY, but no HINCR? 18:00:15 GMT HINCR = HINCRBY 1 18:00:18 GMT easy :)\ 18:47:33 GMT badboy_: yeah, but isn't INCR equivalent to INCRBY 1 as well then? :p 18:47:49 GMT just wondering why the differences in apis 18:47:53 GMT yeah, but in the beginning specialized commands were added 18:48:08 GMT and later antirez decided to not do that for everything 19:15:32 GMT fair 21:14:30 GMT Is there a way to tell redis-cli which socket to connect to, as I would in C with redisConnectUnix(socket)? 21:14:59 GMT Similarly, how does redis-cli know where to connect without specifying on the command line? 21:16:28 GMT (I'm noticing that I must specify the unix socket when writing c programs but when I do stuff in the shell with redis-cli it can somehow infer where to connect... so wondering where this difference comes from) 21:17:24 GMT bleb: -s 21:18:00 GMT that's one of the first lines of redis-cli --help 21:18:36 GMT Usage: ... "-h Server hostname (default: 127.0.0.1)." "-p Server port (default: 6379)." 21:18:43 GMT :) 21:22:44 GMT right after that ;) 21:23:47 GMT (those are at least what it uses to connect by default, what it infers) 21:24:05 GMT but yeah, socket is after that