08:34:01 GMT Hi guys. I made a change to my PHP application enabling it to use Redis for session handling. All off a sudden, Redis acts up and gets incredibly memory consuming and kills my server. I have approx 250 live sessions at any given time. Is Redis not a good choice for handling PHP sessions? 08:47:07 GMT Well, any input regarding the slow Redis is appreciated. I have the result of GET CONFIG '*' here: http://pastebin.com/iikfkuTX 10:47:50 GMT I'm trying to associate a config file with redis, and I'm getting the following error: 10:48:02 GMT > redis-server ~/.redis/redis.conf 10:48:09 GMT > 16403:C 22 Nov 23:43:50.203 # Can't chdir to '~/.redis': No such file or directory 10:48:27 GMT I have *definitely* created the directory, and redis.conf exists within it 10:48:32 GMT is there a mention of ~/.redis in that .conf? 10:53:39 GMT Habbie: yes, the working directory for the rdb file I have also set to "dir ~/.redis" 10:53:57 GMT ok 10:53:59 GMT that's the problem 10:54:05 GMT redis does not know what ~/ means 10:54:09 GMT put the full path there 10:55:13 GMT Habbie: ahh, awesome. Thanks! I thought it was complaining about the location of the conf file. 10:55:24 GMT no :) 10:56:03 GMT yes, that works. Appeciate it :) 10:56:09 GMT np 11:12:32 GMT hi 11:13:07 GMT my redis server shows this error on service starting: Failed to start Advanced key-value store 11:15:10 GMT fixed ;) 11:28:59 GMT Hi 11:29:20 GMT how are strings stored in Redis? utf8? 11:29:39 GMT I’m inserting a url but cannot find it after when I look for it 11:49:03 GMT mickkelodeon: binary, redis doesn't do any encoding 11:49:12 GMT your client does that 13:28:32 GMT hi, getting a weird issue with a redis setup on windows server. sometimes opening a new connection takes around 10 seconds. anyone encountered this? 13:30:09 GMT maybe too many open connections? afaik windows isn't officially supported 13:33:51 GMT not really, around 10 connections open. does not reproduce on the production windows server 13:34:15 GMT we might look into moving it to linux though 13:48:26 GMT save windows licensing costs and hire more staff instead =D 13:49:09 GMT otoh RHEL/etc aren't free if you want support either 13:54:24 GMT https://github.com/PowerDNS/redis-ipprefix updated 13:54:29 GMT moved a lot of logic into redis-side lua 13:54:32 GMT not as much as i could, though 13:55:24 GMT TIL redis' lua has a log function 13:56:29 GMT minus, it does not 13:56:34 GMT look closer 13:57:06 GMT lua would be much cooler if it didn't have 1-based indexing, abusing tables for everything (well, fine except using it as lists/arrays) and treatment of non-existent variable/nil 13:57:14 GMT oh, lol 13:57:21 GMT nice one 14:04:30 GMT :) 14:04:32 GMT brb 14:26:33 GMT back 14:26:52 GMT minus, non-existent var vs. nil can be caught, btw 15:17:05 GMT Good eve, 15:17:17 GMT got a problem with Windows version of Redis 15:17:31 GMT anyone here to help out when the AOF log wont get truncated 15:26:05 GMT Ok its a little mystery: Redis was crashing last night, and the windows service showed stopped 15:26:23 GMT But there was still a process in memory locking some files in the output dir or such 15:26:38 GMT After stop, cleanup of the directory and restart it seems to work again 21:19:59 GMT ć…“ģ—‰ 22:25:21 GMT Is it expected that calling "LLEN key" right after a "RPUSH key value" sometimes return 0? 22:26:20 GMT absolutely not 22:26:42 GMT unless you have some BL/RPOP running on that key