08:26:17 GMT Hey, I hava installed redis 3.2.8 on debian jessie. When run command redis-cli -c -p 6379 and "127.0.0.1:6379> set foo bar", I have an error message (error) CLUSTERDOWN Hash slot not served 08:27:05 GMT When i try create cluster ./redis-trib.rb create --replicas 1 127.0.0.1:6379 127.0.0.1:6380 127.0.0.1:6381 127.0.0.1:6379.0.0.1:6382 127.0.0.1:6383. I have an other error message >>> Creating cluster [ERR] Sorry, can't connect to node 127.0.0.1:6380 08:28:03 GMT Can help me please ? 09:12:50 GMT Nobody ? 09:12:51 GMT tony__: did you actually start nodes on the other ports? 09:12:56 GMT also: be patient ;) 09:16:03 GMT @bad boy i fixed with ./redis-trib.rb fix 127.0.0.1:6379 09:47:11 GMT Hi folks! When I use HGET to get the value of the hash element which is number, HGET always returns string. Is it intended behavior? 09:48:16 GMT yes 09:48:38 GMT Redis only knows byte blobs (more or less) 09:48:57 GMT and apart from some specific integer-returning commands, a "bulk string" = (byte blob) is the default 09:49:43 GMT thanks @badboy 11:02:32 GMT I have "appendonly yes" in my redis config file 11:02:41 GMT but having a look at the data files: 11:02:46 GMT https://gist.github.com/anonymous/cabdc5ae0dd3e0ad5ae2b778420fca65 11:02:56 GMT the aof is empty but the rdb is filled 11:04:12 GMT not sure why this is happening? shouldn't the AOF be filled? 11:08:30 GMT it should, check your logs 11:21:59 GMT hmm 11:22:10 GMT badboy_, this is basically the output: https://gist.github.com/anonymous/1c52b9024dec991ff784e7aa954bb639 11:22:22 GMT badboy_, is there a more verbos log somewhere? 11:23:43 GMT 1. do you have actual data in the database? 11:23:51 GMT 2. are you sure you are looking in the right directory? 11:25:11 GMT badboy_, actually I do not have any data in there 11:25:17 GMT trying to write some 11:25:23 GMT on the master 11:25:24 GMT so all is good 11:25:28 GMT ok :) 11:25:29 GMT no data = nothing in the AOF ¯\_(ツ)_/¯ 11:25:32 GMT hehe 11:25:43 GMT yeah but I was wondering why there is something in the rdb! :) 11:26:38 GMT because the rdb contains a header and metadata 11:28:15 GMT badboy_, kk thanks man! 11:29:57 GMT ok now after writing into it, also the aof got filled 17:55:21 GMT Hello everybody ,I have a question.Which is better to store in Redis a click and view on a specific page.A list or in a hash? 18:21:08 GMT Anyone using something good to monitor llen?