12:09:28 GMT hi guys, is it possible to save sessions with a different lifetime using redis as the session handler? for a php site 12:10:15 GMT we have a db table that serialises and saves the session data, but if you restore the session a while later, it fails 13:13:24 GMT looks like the 2.8 docker image is not around anymore. Is that intentional? 13:13:54 GMT oh yeah, just checked the git log, looks like it is. That sucks. 13:14:34 GMT Been using 2.8 in my integration tests because that's what elasticache provides 16:27:27 GMT anyone around? 17:08:45 GMT is it possible to search by value in redis? 18:33:09 GMT Kingsy: no 18:42:45 GMT Kingsy: rethink the way you're storing your data if that's something you need to do 18:43:36 GMT e.g. have key sets that contain the keys you need to look at (avoiding "KEYS somepattern*") 18:44:27 GMT if you mean searching sets, you could do it in Lua to avoid serializing/deserializing and sending stuff over the wire. and with Redis 3.2 you can use the C API which is even faster if you wanted