01:45:58 GMT has anyone encountered this error? "(error) LOADING Redis is loading the dataset in memory" 01:46:09 GMT I keep getting it after running updates. redis is 3.0.7 running in docker 05:30:22 GMT Is it possible to get multiple ZRANGE in one go? (so that I can get a total count for all of the ranges I want?) 07:51:36 GMT djinja: you can do multiple zranges in a multi/exec (still separate commands though) or use a lua script to evaluate in redis-side 08:05:19 GMT minus: would the multi/exec give me a single result, or multiple ones? 08:07:18 GMT multiple ones 08:27:02 GMT minus: so what would be the advantage of doing them in a multi/exec? 08:27:21 GMT the commands are executed atomically 09:13:56 GMT Good morning (or afternoon, evening, depending on timezone… :) ) 09:14:15 GMT I have a question about installing Redis 09:14:36 GMT My server runs Ubuntu 14.04 and I can either use a PPA or install from source 09:15:05 GMT Im wondering how updating the Redis server goes if installing from source. Would it be as simple as running the make instruction again? 09:15:25 GMT or that and `./update/install_script.sh` 09:15:27 GMT ? 12:41:44 GMT Hi, a complete redis noob here. I have a server running on localhost on one machine and it's biond is 0.0.0.0. I try to connect to this server using redis ping -hostname -port but get a connection refused error. How do I solve this? 13:18:53 GMT anyone know how i can change redis from 127.0.0.1, to 0.0.0.0 13:41:42 GMT the bind address? yes, it'll be available to anyone able to connect to the host then, so make sure nothing bad happens 13:43:28 GMT yea, I'm opening it up within a defined network 13:44:00 GMT so, it will only be accessible within the `app_nw` network 13:44:05 GMT https://github.com/jeff1evesque/machine-learning/blob/b4540cf3c780dd1e08310ea598d16e21a251929f/build_docker#L24-L29 13:44:52 GMT but, to allow this to happen, within the `redis` docker container instance, i would need to change redis from 127.0.0.1 to 0.0.0.0 13:45:05 GMT yep, in the redis config file 13:45:24 GMT just a simple bind 0.0.0.0 13:45:37 GMT do i just change `bind 127.0.0.1` to `bind 0.0.0.0` in http://download.redis.io/redis-stable/redis.conf? 13:45:55 GMT yep 13:46:09 GMT maybe also look up protected mode 13:47:29 GMT seems like protected mode won't be a problem with the explicit bind 13:47:30 GMT what's that? 13:47:50 GMT ctrl-f in the config for protected mode 17:59:00 GMT hi guys. My redis port is exposed to the net in order to work well my docker instances. Is this a security issue? 17:59:30 GMT should the redis port be filtered or I am exposing the server now? 19:35:32 GMT Bond it to the Docker host ip if it's running on the host 19:35:39 GMT Bind* 23:38:53 GMT Is there a keyspace event for a key EXITING the database? Not just expriring? 23:47:04 GMT Never mind. 23:47:10 GMT I mean unique enter