00:23:07 GMT Hi :) Is there anyone here that might be able to help me with a problem I'm having with hiredis? 00:35:05 GMT I'm getting this error: "double free or corruption (!prev)" 00:35:47 GMT This is after a redisCommand returns REDIS_ERR_EOF Server closed the connection 00:54:11 GMT Hey all, anyone using the node client? I'm looking for a simple way to check if my redis db is empty when starting up. Is there a simple way to do that? 04:56:18 GMT Anyone use txredisapi? 08:37:45 GMT Hi all 08:39:03 GMT does anyone know what could be the issue for this log message ? 08:39:04 GMT StackExchange.Redis.RedisConnectionException: SocketFailure on GET ---> System.IO.IOException: Unable to read data from the transport connection: An established connection was aborted by the software in your host machine. ---> System.Net.Sockets.SocketException: An established connection was aborted by the software in your host machine 08:54:49 GMT wachpwnski-mobi: yes. but that's not a question 08:55:11 GMT does anyone know what could be the issue for this log message ? 08:55:16 GMT StackExchange.Redis.RedisConnectionException: SocketFailure on GET ---> System.IO.IOException: Unable to read data from the transport connection: An established connection was aborted by the software in your host machine. ---> System.Net.Sockets.SocketException: An established connection was aborted by the software in your host machine 08:55:25 GMT ELS: read you the first time 08:55:41 GMT Is it a network issue ? or system ? 08:55:58 GMT ELS: if the connection was idle for a longer time then it's not surprising it broke 08:56:38 GMT though i'm not too familiar with windows socket error messages 09:02:06 GMT minus: I think I got it figured out. My other question would be how do you manage a connection pool between different web routes? Should I use some type of class instance for each resource, or can I open a connection each request? 09:04:48 GMT In other words, if I call rc = yield redis.ConnectionPool(…), will the library handle the connections on the backend, or do I need to manage that `rc` so I don't keep opening connections? 09:07:26 GMT wachpwnski-mobi: it keeps connections open and reuses them, that's what connection pools do 09:14:39 GMT minus: But if I keep declaring the connection pool instance in each route/resource, it will make multiple connection pools, right? 09:19:47 GMT yeah, probably 09:22:44 GMT minus: https://bpaste.net/show/6421fabbd004 09:23:08 GMT I think I just need to make a class to operate as a globally shared client. 09:24:45 GMT Maybe i'll use a context manager 09:25:26 GMT or a decorator 09:25:59 GMT Heyo ! Quick question about something I'd like to do with redis. I'm doing some leaderboard by region for multiple games, so sorted set are awesome. But when some people some region, I need to find all leader board where this player is. I should use a different set for this ? 09:27:25 GMT wachpwnski-mobi: i'm sure getting the pool into there is a solved problem 09:30:06 GMT minus: I'm using twisted klein, I don't see any adaptors for it, I'll have to make my own. 09:31:05 GMT magnetik: You will probably have to keep two namespaces for that type of operation, yes. 09:53:16 GMT wachpwnski-mobi: why klein btw and not flask? 09:55:16 GMT I like klein, flask takes a bit of work to get it to work async 10:00:07 GMT you don't need "async" if you're using gevent \o/ 12:52:46 GMT sooo.. does anyone have a dump/restore bash script or something? checking google i can pretty much only find things with tons of dependencies 12:53:12 GMT i'd prefer a tiny shellscript rather than having python + pip or ruby + gem as dependencies 12:55:15 GMT using redis-cli KEYS \* | xargs redis-cli DUMP is good enough to get to the values but then to use RESTORE i'll need the key aswell (which isn't there then) 12:58:48 GMT KekSi: shell scripts are shit for this kind of thing though 13:00:09 GMT KekSi: a statically compiled Go tool would work, i guess. assuming you can bootstrap it 13:00:39 GMT i'd love to put it in my redis image - anything statically compiled really would be fine 13:06:16 GMT C program with hiredis statically linked would probably work too 13:06:26 GMT i have nothing at hand though 14:09:29 GMT Can I copy a dump.rdb to another server's /var/lib/redis/dump.rdb and restart the redis server and everything is happy, the stars have aligned, and I'm good? 14:09:41 GMT <*> mentocd_ hopes it's as easy as that 14:12:20 GMT I guess I didn't SAVE in redis-cli 14:21:26 GMT hi, I'm getting this when I try to start redis server https://bpaste.net/show/eae15b58824b 14:21:42 GMT redis-server.service: Start request repeated too quickly. 14:25:53 GMT hey redis should abandon their own clustering tech in favour of a dynamo solution ie: dynomitedb 14:26:02 GMT beats it hands down 14:26:09 GMT why reinvent the wheel 14:26:14 GMT ah, I think it's because coping dump.rdb from server A to server B is failing because A has 3.2 and B has 3.0 14:39:30 GMT join 14:39:33 GMT hi 14:39:46 GMT does any body know 14:39:59 GMT if there is any license for aix 14:40:23 GMT we are looking for a license with support 14:40:42 GMT but i can not find anything like that 14:58:00 GMT mentocd_: yes, that can be a problem 22:21:41 GMT question, is redis a 1:1 memmory-data mapped database?.. 22:22:47 GMT I have a situation where 35k cds (content delivery hash) tokens are generated along with ttl's, and I'm getting reports over half the tokens are missing, this seems like a circular buffer issue right?.. 22:23:24 GMT not enough provisioned storage and redis is overwriting storage on older keys. 22:23:38 GMT evicting older keys.