00:30:14 GMT hi, i've been struggling with the following issue and could really use some help. i have loaded a lua script into redis which calls HGET and later calls HINCRBY . If I manually delete from redis-cli, the HGET /sometimes/ returns a previous value of . 00:30:21 GMT manual hgetall confirms that was deleted 00:30:25 GMT i modified the script to just return the result of the HGET if present, and sure enough, fairly frequently, it returns a value it had before being deleted 01:01:25 GMT if I add an object to a list with expiry time 30 minutes, and in 10 minutes of it being on that list I want to extend the expiration time, how would I do that? 01:02:45 GMT EXPIRE, nvm :p 04:55:53 GMT prsn: that shouldn't happen. Most likely you're doing something wrong. I'd suggest you create a minimal piece of code that reproduces the behaviour to confirm it's really a bug 07:27:11 GMT Hello to everyone 07:28:35 GMT What do you use to document your redis keyspace? I need to write a doc to describe what are the keys, which "schema" they follow, the names of the message queues.....do you have any suggestion? any template? 16:22:05 GMT Little known facts... allkeys-random is 30% faster than allkeys-lru 17:15:51 GMT I've got a weird issue with my redis cache server not using all of the memory on the server; is it capped at around 25%, and doesnt ever exceed it - I havent set maxmemory, from what I understand the default is 0 17:15:56 GMT so it'll use all the ram 17:17:08 GMT we're storing php sessions in redis, and for some obscure reason, a user is losing his session 17:17:15 GMT I suspect some sort of limit 17:45:11 GMT i assume you cross-checked the config with CONFIG GET *