05:14:26 GMT ayee: if you need HA or not is up to you. You could put HAProxy or twemproxy between your app and redis 05:42:10 GMT badboy_, ping? 10:46:39 GMT Hey guys should i need to close redis connection in php ?? 11:27:30 GMT <_Wise_> hi * 11:31:10 GMT <_Wise_> I need to setup a Redis/Sentinel 3.0 lab with Master-Slave replication 11:31:13 GMT <_Wise_> that I can do 11:31:35 GMT <_Wise_> *but* I need to simulate a replication delay 11:32:00 GMT <_Wise_> so that the slave is out of sync at the time it is promoted to Master 11:32:19 GMT <_Wise_> what is the best way to proceed ? 14:00:49 GMT is there a way, in redis, to have a kv store where the v are stored on disk instead of ram? 14:01:06 GMT no 14:01:24 GMT so redis = everything in ram, all the time? 14:02:09 GMT you could store metadata and a path to where on disk the value is, in redis 14:03:50 GMT yes. redis is all ram, all the time - although it usually persists the DB and a log of operations to disk (unless you ask it not to) 14:04:17 GMT Inge-: thanks for clarifying 14:04:54 GMT is there some DB (riak? rocksdb? leveldb? bitcask?) that you would recommend to complement redis? something for storing large amounts of rarely accessed KV data (say, the 'image' store part of imgur) 14:05:17 GMT one could imagine building imgur by (1) storing all meta data in redis, and (2) storing all actual images in a kv store [with the v stored on disk] 14:37:54 GMT in redis there is just one 'global namespace', and there isn't a notion of a nested/hierarchical key namespace right? 14:39:53 GMT hwkng: there's a consensus using : to nest keys, viewers like RDM will automatically build a tree splitting by : 14:40:23 GMT ahfeel_: i see, ":' is like "/" in file system paths 14:41:13 GMT hwkng: yeah more or less :) 15:07:34 GMT Hello good people. I'd like to MIGRATE key from db 0 to db 1 on single instance. I get IOERR error or timeout reading to target instance 15:08:49 GMT which is weird - redis_version:3.0.6 15:10:30 GMT So is it possible to MIGRATE on single instance? 16:46:26 GMT hi, I'm trying to get my c++ code around hiredis to work, I'm using libev with the async interface of hiredis, and it *mostly* works but sometimes it hangs in epoll_poll(), some other times I get a memory corruption error from gdb... I'm not very experienced in concurrent programming, so any pointers to things I can try to debug my code are really appreciated 20:59:55 GMT <__marco> Hello. I am trying to run redis inside a docker container but I get the following error: Creating Server TCP listening socket *:6379: unable to bind socket 21:00:37 GMT <__marco> I follow these instructions: https://hub.docker.com/_/redis/ 21:57:41 GMT Do you guys know of a good way to implement a round robin “get” from a redis key(s)? Like an array shift followed by an array push? I believe this is RPOPLPUSH and described as “Circular list”