[00:10:07] NetRoY (~NetRoY@nat/yahoo/x-jesyffksojftfcmz) joined #redis. [00:11:35] martincozzi (~martincoz@c-67-180-194-70.hsd1.ca.comcast.net) left irc: Quit: martincozzi [00:14:08] twittard (~twittard@vpn.lax.truecarcorp.com) left irc: Ping timeout: 240 seconds [00:17:26] rittyan (~rittyan@176.14.223.175) joined #redis. [00:20:15] twittard (~twittard@vpn.lax.truecarcorp.com) joined #redis. [00:28:35] rittyan, Mr. Redis, do you know if there is redis-py API reference somewhere? [00:29:47] ddilinger (~guy@unaffiliated/ddilinger) left irc: Ping timeout: 240 seconds [00:30:45] temoto: no idea [00:30:51] temoto: https://raw.github.com/andymccurdy/redis-py/master/redis/client.py [00:31:03] ddilinger (~guy@unaffiliated/ddilinger) joined #redis. [00:32:12] yes i'm using that too, just not too convenient [00:33:32] Net_RoY (~NetRoY@nat/yahoo/x-meoiqlxcrdfpnvrz) joined #redis. [00:36:12] NetRoY (~NetRoY@nat/yahoo/x-jesyffksojftfcmz) left irc: Ping timeout: 244 seconds [00:36:12] Nick change: Net_RoY -> NetRoY [00:36:22] rittyan (~rittyan@176.14.223.175) left irc: Remote host closed the connection [00:41:10] Does Redis check key expiration before each command when executing multi in pipeline? [00:41:10] mnemonic (~mnemonic@mago.xen.prgmr.com) left irc: Read error: Connection reset by peer [00:43:14] wilmoore (~wilmoore@c-67-190-17-108.hsd1.co.comcast.net) left irc: Ping timeout: 248 seconds [00:43:25] Example: MULTI; LPUSH foo; EXPIRE foo 10; EXEC when executing this pipeline after 10sec, is there a chance that key 'foo' will expire between LPUSH and EXPIRE? [01:01:29] Nick change: wmoss -> wmoss|away [01:02:50] xcbt (~xcbt@bc98121.bendcable.com) left irc: Remote host closed the connection [01:11:43] Nick change: Nuck -> NuckOff [01:13:53] wam (~wam@unaffiliated/wam) joined #redis. [01:14:02] thehodge (~thehodge@2001:470:1f09:13a3:6434:2457:bb24:b963) joined #redis. [01:32:59] tilgovi (~randall@c-98-210-155-124.hsd1.ca.comcast.net) joined #redis. [01:32:59] tilgovi (~randall@c-98-210-155-124.hsd1.ca.comcast.net) left irc: Changing host [01:32:59] tilgovi (~randall@couchdb/developer/tilgovi) joined #redis. [01:33:27] tilgovi (~randall@couchdb/developer/tilgovi) left irc: Remote host closed the connection [01:38:45] temoto: pydoc redis [01:41:30] Kosma, yeah, thanks. [01:43:57] rittyan (~rittyan@2a02:6b8:0:40c:7aca:39ff:feb3:d779) joined #redis. [01:53:47] drbobbeaty (~drbobbeat@c-67-184-75-162.hsd1.il.comcast.net) joined #redis. [02:00:17] Hi [02:00:23] How do I backup my Redis data? [02:05:28] ichilton: if you don't use AOF, just copy dump.rdb somewhere [02:06:24] Kosma: thanks - how do I know if I use AOF? [02:07:32] duh [02:07:36] you look in your redis.conf :D [02:08:04] I can't see anything mentioning AOF [02:08:09] but in /var/lib/redis, I have: [02:08:09] -rw-r----- 1 redis www-data 17050358 Dec 15 15:39 appendonly.aof [02:08:10] -rw-rw---- 1 redis www-data 362385 Dec 15 15:43 dump.rdb [02:08:48] you'll need to issue the command that flushes the data from aof to rdb [02:08:57] then copy the rdb [02:09:25] michel_v: is that - redis-cli bgrewriteaof ? [02:09:31] I run that at midnight each night [02:09:48] and I have: [02:09:48] save 300 1 [02:09:49] save 60 100 [02:09:53] in my redis.conf [02:12:25] ichilton: do a bgrewriteaof and when it finishes just copy dump.rdb [02:12:42] ok [02:12:55] Will bgrewriteaof not return until it's done? [02:13:08] or does it do as it's name implies and do it in the background? [02:13:17] it works in background [02:13:38] Is there a foreground one that doesn't return until it's done? [02:13:39] so check redis-cli info to make sure it's finished [02:13:54] I want to script this to happen automatically [02:14:44] $ redis-cli info | grep rewri [02:14:45] bgrewriteaof_in_progress:0 [02:15:04] ah, cool - thanks [02:16:37] http://redis.io/commands/bgrewriteaof [02:16:48] Last message repeated 1 time(s). [02:16:48] Rewrites the append-only file to reflect the current dataset in memory [02:17:00] Does not touch dump.rdb at all. [02:17:36] fsck [02:17:47] Either blocking command SAVE and rsync dump.rdb to backup server [02:18:12] so I've been getting this wrong the entire time [02:18:13] ah, cool [02:18:16] so I can just go: [02:18:19] redis-cli save ; rsync bla [02:18:21] yes? [02:18:25] well [02:18:31] redis-cli save ; rsync /var/lib/redis somewhere [02:18:35] or non-blocking command BGREWRITEAOF, check bgrewriteaof_in_progress and rsync .aof to backup server. [02:18:57] Actually, you don't need to rewrite AOF to do backups. [02:19:07] what's the difference between appendonly.aof and dump.rdb? [02:19:11] it just makes AOF more compact. [02:19:23] is it ok to copy those while redis is running? [02:19:36] Yes. [02:19:51] cool, thanks [02:20:35] AOF is WAL in terms of 'usual databases'. It's a log of all incoming commands that can be replayed after server restart to load all data. [02:20:49] WAL = write ahead log [02:20:56] ank (~ank@c-67-172-16-188.hsd1.pa.comcast.net) left irc: Quit: ank [02:21:25] RDB is just a good old full data dump. [02:21:42] ahh, cool [02:21:51] so you can create the RDB from the AOF? [02:22:00] how far back does the AOF go? [02:22:21] Yes, start Redis, it will read AOF, issue SAVE command - it will create RDB. [02:22:31] AOF almost always contains latest DB state. [02:22:34] cool [02:22:40] does it go back to the beginning though? [02:22:50] Yes, up to the very first command. [02:22:56] excellent [02:23:13] so like an auto-backup really [02:23:14] BGREWRITEAOF removes consecutive modifications of same keys. [02:24:44] Like a persistent copy of all data. It becomes backup when you copy it to remote server or tape. [02:25:08] (but that's just being picky) [02:25:23] drbobbeaty (~drbobbeat@c-67-184-75-162.hsd1.il.comcast.net) left irc: Quit: drbobbeaty [02:27:34] cool [02:27:36] thanks for your help all [02:28:01] Looks like the best way is to do redis-cli save and then rsync the whole of /var/lib/redis to be safe [02:29:17] RDB contains latest data after SAVE [02:29:32] it is more efficient in terms of space and save/load time [02:30:08] But Redis will load from AOF if it is present, because *usually* AOF is more up to date. [02:30:38] So if you're using AOF, you could just rsync it at any time you want. [02:31:17] rsyncing both RDB and AOF after SAVE is redundant. [02:31:24] I think i'd rather have both for redundancy though [02:31:51] the aof certainly should compress well if it's text [02:32:54] It's text commands + data. [02:33:04] i mean values stored in keys [02:33:28] nod [02:33:29] If you store text data in values, compression will be very good. [02:36:27] Also note that SAVE forks to avoid blocking main server on disk write. If clients issue any write commands (SET, LPUSH, SADD, etc), OS will copy-on-write pages in question which will lead to increased memory consumption. [02:38:40] lux___ (~lux@ppp-36-77.25-151.libero.it) joined #redis. [02:40:08] temoto: did you mean BGSAVE? [02:41:40] Kosma, unfortunately, there is no documentation on SAVE command. http://redis.io/topics/persistence this page, though, states that "Whenever Redis needs to dump the dataset to disk... it forks" [02:42:26] I assume then SAVE and BGSAVE differ only in terms of blocking client response. [02:42:58] lux_ (~lux@ppp-22-84.25-151.libero.it) joined #redis. [02:43:03] I'm pretty certain that SAVE does not fork [02:43:22] Okay, that's it. I'm going to source. [02:43:23] lux___ (~lux@ppp-36-77.25-151.libero.it) left irc: Ping timeout: 245 seconds [02:43:24] Nick change: lux_ -> Guest12951 [02:43:24] although not 100% sure [02:46:29] Yes, SAVE does not fork. [02:46:38] ichilton, you have a problem. :) [02:47:24] so what will happen? [02:47:46] redis-cli save will block until all data is dumped to disk. Redis will not serve other clients. [02:47:48] will requests get queued while it's saving, or blocked? [02:47:51] err [02:47:52] or lost [02:48:06] blocked, then lost after timeout. [02:48:11] ok [02:48:13] if your clients have any timeout [02:48:30] Redis will not read commands while SAVE in progress. [02:48:37] am I better just copying /var/lib/redis as is, without any kind of write and that'll give me it within 5 minutes as i've got save 300 1 in my config? [02:48:45] Yes. [02:48:54] I might actually drop that down to 120 [02:48:59] how about this? [02:49:12] redis-cli bgsave; while redis-cli info | grep bgsave_in_progress:1; do sleep 1; done; rsync /var/lib/redis/dump.rdb somewhere [02:49:25] chakrit (~chakrit@ppp-58-8-180-249.revip2.asianet.co.th) left irc: Quit: chakrit [02:49:31] yes to "that'll give it within 5 minutes", is it better or not - up to you [02:49:32] that looks cool :) [02:50:00] should you not do the same with BGREWRITEAOF? [02:50:28] BGREWRITEAOF only compacts AOF. It does not make AOF any more 'latest'. [02:50:43] redis-cli bgsave; while redis-cli info | grep bgsave_in_progress:1; do sleep 1; done; redis-cli bgrewriteaof; while redis-cli info | grep bgrewriteaof_in_progress:1; do sleep 1; done; rsync /var/lib/redis/dump.rdb somewhere [02:51:18] fmeyer (~fmeyer@186.220.10.39) left irc: Remote host closed the connection [02:51:50] ichilton: dump.rdb contains the entire dataset after a save (or bgsave). there's no need to backup anything else [02:52:04] ok [02:52:28] if I understand things correctly, AOF is only helpful as a backup when the machine (or redis process) crashes, not when the hard drive crashes [02:52:39] yeah - i'd rather have both :) [02:52:46] redundancy [02:53:22] it's not exactly redundancy [02:53:25] well [02:53:28] it's an extra backup [02:53:35] no, it's not [02:53:43] actually, they cover two different scenarios [02:53:52] you can recontruct the rdb from the aof [02:54:03] you can, but it's not the point [02:54:28] AOF saves you from losing data since last save/bgsave in case the machine goes down [02:54:52] yeah, but temoto said that it contains every command back to the beginning [02:57:11] Pretty much like RDB, except that RDB contains only data, no commands. That's why he argues that after BGSAVE you don't need AOF. [02:58:04] Kosma, if i understand correctly, his redundancy gives protection against one of rdb/aof files corruption on backup server. [02:58:27] which is pretty wierd but why not [02:58:46] when does the AOF get written to? [02:58:57] After each command. [02:58:59] fanjie (~fanjie@c-67-180-77-58.hsd1.ca.comcast.net) joined #redis. [02:59:10] ah, right [02:59:10] my general advice is: 1. when adding a new product to your stack, start with less critical services before using it for core things, and 2. actually DO TEST failure scenarios - kill machines, delete files, make things crash and so on [02:59:25] but rdb only gets written at the intervals of the save command [02:59:34] i've got 300s on 1 write or 60s on 100 writes [02:59:43] because if you can't fix it in a test environment, you won't be able to fix it reliably when production goes down [03:00:37] if you think RDB+AOF will mitigate corruption issues, try manually corrupting one of them and see what happens [03:02:06] http://www.codinghorror.com/blog/2011/04/working-with-the-chaos-monkey.html [03:08:27] ampasowa (~ampasowa@41-218-233-212-adsl-dyn.4u.com.gh) joined #redis. [03:18:08] luckyruby (~luckyruby@125-187.96-97.tampabay.res.rr.com) left irc: Remote host closed the connection [03:19:10] rb2k_ (~rb2k@2001:6f8:1334:0:35d9:1dd6:533d:a3b5) joined #redis. [03:19:18] rb2k (~rb2k@HSI-KBW-134-3-0-160.hsi14.kabel-badenwuerttemberg.de) left irc: Ping timeout: 248 seconds [03:19:18] Nick change: rb2k_ -> rb2k [03:21:32] thehodge (~thehodge@2001:470:1f09:13a3:6434:2457:bb24:b963) left irc: Remote host closed the connection [03:21:56] thehodge (~thehodge@2001:470:1f09:13a3:6434:2457:bb24:b963) joined #redis. [03:25:40] agentzh (~agentz@nginx/adept/agentzh) left irc: Ping timeout: 252 seconds [03:26:24] thehodge (~thehodge@2001:470:1f09:13a3:6434:2457:bb24:b963) left irc: Ping timeout: 252 seconds [03:27:07] __alex (~alex@g230199023.adsl.alicedsl.de) joined #redis. [03:39:30] agentzh (~agentz@nginx/adept/agentzh) joined #redis. [03:45:52] rb2k (~rb2k@2001:6f8:1334:0:35d9:1dd6:533d:a3b5) left irc: Quit: rb2k [03:48:49] rb2k (~rb2k@HSI-KBW-134-3-0-160.hsi14.kabel-badenwuerttemberg.de) joined #redis. [03:51:06] jonesy (~jonesy@pool-173-71-115-162.cmdnnj.fios.verizon.net) left irc: Quit: Computer has gone to sleep. [03:56:26] drbobbeaty (~drbobbeat@38.98.137.29) joined #redis. [04:02:02] io_syl (~io_syl@unaffiliated/steph021) left irc: Quit: Computer has gone to sleep. [04:09:11] nsalvo (~nsalvo@190.55.32.117) joined #redis. [04:14:50] thehodge (~thehodge@82.109.33.196) joined #redis. [04:15:28] codeographer (~kylerober@24-176-254-168.dhcp.reno.nv.charter.com) left irc: Quit: codeographer [04:32:02] JeremyWei (~textual@122.193.209.13) left irc: Ping timeout: 252 seconds [04:37:07] ncode (~ncode@unaffiliated/ncode) joined #redis. [04:42:21] NetRoY (~NetRoY@nat/yahoo/x-meoiqlxcrdfpnvrz) left irc: Quit: NetRoY [04:44:46] Creap (~jacob@jacobrask.net) joined #redis. [04:45:08] Can I somehow select an unused database or make sure no one is connected to a database before writing to it? [04:45:16] lmh (lmh@nat/redhat/x-eoslxzoqcbxwtrde) left irc: Ping timeout: 240 seconds [04:45:50] My application writes to redis, and if the user starts two instances I don't want them to overwrite each other's data. I currently prefix keys, but that means longer keys which would mean more memory consumption, right? [04:47:26] lmh (lmh@nat/redhat/x-akwpetrhgkztlaee) joined #redis. [04:48:11] the only way I can think of is to connect to the database and check that KEYS * is empty, and otherwise select another db between 0 and max.. [04:50:49] a faster way would be to look at info [04:51:07] if a database is not empty, it has a dbX:keys=... entry [04:52:05] however, it might be a better idea to start a private Redis instance [04:53:01] pierroooo (~pierrooo@AGrenoble-257-1-7-204.w86-193.abo.wanadoo.fr) joined #redis. [04:53:03] jano (~djanowski@186.126.139.81) joined #redis. [04:53:50] ok, I'll look into that [04:55:18] the 'find an empty database' approach has two problems: one, you can't easily know how many databases are there, and second: if you want to use an existing database, which one would you choose? [04:56:30] pierrooo (~pierrooo@AGrenoble-257-1-34-48.w86-206.abo.wanadoo.fr) left irc: Ping timeout: 268 seconds [04:57:28] elcuervo (~elcuervo@r186-48-207-140.dialup.adsl.anteldata.net.uy) joined #redis. [04:59:13] rittyan_ (~rittyan@2a02:6b8:0:40c:7aca:39ff:feb3:d779) joined #redis. [04:59:13] rittyan (~rittyan@2a02:6b8:0:40c:7aca:39ff:feb3:d779) left irc: Remote host closed the connection [05:03:20] ncode (~ncode@unaffiliated/ncode) left irc: Quit: Textual IRC Client: http://www.textualapp.com/ [05:10:03] brianseeders (~BS@108-216-88-132.lightspeed.bcvloh.sbcglobal.net) joined #redis. [05:10:23] ampasowa (~ampasowa@41-218-233-212-adsl-dyn.4u.com.gh) left irc: Ping timeout: 252 seconds [05:10:50] hackband (~hackband@0x5359d382.cpe.ge-1-1-0-1104.bynqu1.customer.tele.dk) joined #redis. [05:13:51] ampasowa (~ampasowa@41-218-242-131-adsl-dyn.4u.com.gh) joined #redis. [05:16:38] martincozzi (~martincoz@c-67-180-194-70.hsd1.ca.comcast.net) joined #redis. [05:31:12] kushal (~kdas@fedora/kushal) left irc: Ping timeout: 248 seconds [05:33:18] imajes (~imajes@is.imaj.es) left irc: Excess Flood [05:33:43] imajes (~imajes@is.imaj.es) joined #redis. [05:36:50] seppo0010 (~Adium@200.69.194.105) joined #redis. [05:39:36] soveran (~soveran@186.19.214.247) joined #redis. [05:47:25] nsalvo (~nsalvo@190.55.32.117) left irc: Quit: leaving [05:47:42] nsalvo (~nsalvo@190.55.32.117) joined #redis. [05:51:09] rb2k_ (~rb2k@2001:6f8:1334:0:e147:6556:39ea:db14) joined #redis. [05:51:43] brianseeders (~BS@108-216-88-132.lightspeed.bcvloh.sbcglobal.net) left irc: Ping timeout: 252 seconds [05:52:56] rb2k (~rb2k@HSI-KBW-134-3-0-160.hsi14.kabel-badenwuerttemberg.de) left irc: Ping timeout: 240 seconds [05:52:56] Nick change: rb2k_ -> rb2k [06:06:45] Guest12951 (~lux@ppp-22-84.25-151.libero.it) left irc: Quit: This computer has gone to sleep [06:16:31] axl_ (~axl@173-11-52-113-Minnesota.hfc.comcastbusiness.net) left irc: Read error: Connection reset by peer [06:16:42] axl_ (~axl@173-11-52-113-Minnesota.hfc.comcastbusiness.net) joined #redis. [06:17:34] awksed2greep (~awksedgre@glo3.manheim.com) left irc: Quit: This computer has gone to sleep [06:25:43] seppo0010 (~Adium@200.69.194.105) left #redis. [06:25:52] nu7hatch (~cubox@r186-48-220-126.dialup.adsl.anteldata.net.uy) joined #redis. [06:30:21] hackband (~hackband@0x5359d382.cpe.ge-1-1-0-1104.bynqu1.customer.tele.dk) left irc: Remote host closed the connection [06:31:12] imajes (~imajes@is.imaj.es) left irc: Excess Flood [06:32:13] imajes (~imajes@is.imaj.es) joined #redis. [06:35:48] agentzh (~agentz@nginx/adept/agentzh) left irc: Quit: Leaving. [06:37:23] ncode (~ncode@187.45.254.95) joined #redis. [06:37:23] ncode (~ncode@187.45.254.95) left irc: Changing host [06:37:23] ncode (~ncode@unaffiliated/ncode) joined #redis. [06:37:57] martincozzi (~martincoz@c-67-180-194-70.hsd1.ca.comcast.net) left irc: Quit: martincozzi [06:53:11] nu7hatch_ (~cubox@r186-48-220-126.dialup.adsl.anteldata.net.uy) joined #redis. [06:54:11] ampasowa (~ampasowa@41-218-242-131-adsl-dyn.4u.com.gh) left irc: Quit: Leaving. [06:55:08] nu7hatch (~cubox@r186-48-220-126.dialup.adsl.anteldata.net.uy) left irc: Ping timeout: 240 seconds [06:55:08] Nick change: nu7hatch_ -> nu7hatch [06:58:38] NetRoY (~NetRoY@122.167.90.12) joined #redis. [07:02:12] fanjie (~fanjie@c-67-180-77-58.hsd1.ca.comcast.net) left irc: Quit: fanjie [07:02:19] axl__ (~axl@216-43-114-19.ip.mcleodusa.net) joined #redis. [07:03:00] axl___ (~axl@173-11-52-113-Minnesota.hfc.comcastbusiness.net) joined #redis. [07:04:56] axl_ (~axl@173-11-52-113-Minnesota.hfc.comcastbusiness.net) left irc: Ping timeout: 240 seconds [07:06:24] ceej (~anonymous@cpe-72-190-40-203.tx.res.rr.com) joined #redis. [07:06:59] axl__ (~axl@216-43-114-19.ip.mcleodusa.net) left irc: Ping timeout: 252 seconds [07:10:25] d0k (~d0k@p509230E0.dip.t-dialin.net) joined #redis. [07:13:28] seppo0010 (~Adium@200.69.194.105) joined #redis. [07:20:44] awksed2greep (~awksedgre@c-24-98-243-58.hsd1.ga.comcast.net) joined #redis. [07:23:39] jonesy (~jonesy@68.64.144.221) joined #redis. [07:23:49] jano (~djanowski@186.126.139.81) left irc: Disconnected by services [07:23:50] jano_ (~djanowski@186.126.126.116) joined #redis. [07:31:58] rurufufuss (~rurufufus@115-64-27-246.static.tpgi.com.au) joined #redis. [07:34:15] pietern (~pieter@208.91.1.14) joined #redis. [07:34:15] #redis: mode change '+v pietern' by ChanServ!ChanServ@services. [07:40:45] radiocats (~chatzilla@h-64-236-128-42.nat.aol.com) joined #redis. [07:41:45] seppo0010 (~Adium@200.69.194.105) left #redis. [07:49:56] rb2k_ (~rb2k@2001:6f8:1334:0:f01b:19f9:df70:22de) joined #redis. [07:51:30] rb2k (~rb2k@2001:6f8:1334:0:e147:6556:39ea:db14) left irc: Ping timeout: 252 seconds [07:51:30] Nick change: rb2k_ -> rb2k [07:53:20] martincozzi (~martincoz@c-67-180-194-70.hsd1.ca.comcast.net) joined #redis. [07:58:25] radiocats (~chatzilla@h-64-236-128-42.nat.aol.com) left irc: Remote host closed the connection [07:59:19] mhald (~mhald@c-76-115-96-86.hsd1.or.comcast.net) left irc: Ping timeout: 252 seconds [07:59:29] napperjabber (~napperjab@149.48.161.10) joined #redis. [08:00:25] Hey Redis, I'm new to the database. Is there a way to monitor updates to a particular key? Or do I have to keep pinging the database for changes? [08:02:32] napperjabber: see publish / subscribe pattern [08:02:52] napperjabber: http://redis.io/topics/pubsub [08:03:55] abki_: thanks, I think this is what I need. [08:04:00] Swimming_Bird (~textual@64.70.114.88) joined #redis. [08:08:29] soveran (~soveran@186.19.214.247) left irc: Remote host closed the connection [08:10:08] radiocats (~chatzilla@h-64-236-128-42.nat.aol.com) joined #redis. [08:13:21] ncode (~ncode@unaffiliated/ncode) left irc: Quit: Textual IRC Client: http://www.textualapp.com/ [08:16:23] jano (~djanowski@host11.186-110-165.telecom.net.ar) joined #redis. [08:17:00] Swimming_Bird (~textual@64.70.114.88) left irc: Quit: Computer has gone to sleep. [08:18:08] jano_ (~djanowski@186.126.126.116) left irc: Ping timeout: 240 seconds [08:22:48] tjholowaychuk (~tjholoway@S010658b03565e6c6.gv.shawcable.net) joined #redis. [08:23:17] Wombert (~Wombert@dslb-092-074-120-056.pools.arcor-ip.net) joined #redis. [08:23:40] Tuxist (~quassel@dslb-092-077-014-198.pools.arcor-ip.net) left irc: Remote host closed the connection [08:25:15] rurufufuss (~rurufufus@115-64-27-246.static.tpgi.com.au) left irc: Read error: Connection reset by peer [08:26:10] ank (~ank@c-67-172-16-188.hsd1.pa.comcast.net) joined #redis. [08:26:22] Jrz (~jrz@87.239.184.141) left irc: Quit: Computer has gone to sleep. [08:32:12] rittyan_ (~rittyan@2a02:6b8:0:40c:7aca:39ff:feb3:d779) left irc: Remote host closed the connection [08:32:20] rb2k (~rb2k@2001:6f8:1334:0:f01b:19f9:df70:22de) left irc: Quit: rb2k [08:32:45] senderista (~senderist@216.161.248.54) joined #redis. [08:33:38] nuba (~nuba@pauleira.com) left irc: Ping timeout: 240 seconds [08:33:52] _macro (~Neil@c-67-169-183-90.hsd1.ca.comcast.net) left irc: Quit: Computer has gone to sleep [08:36:42] lux___ (~lux@ppp-19-144.25-151.libero.it) joined #redis. [08:39:39] jano (~djanowski@host11.186-110-165.telecom.net.ar) left irc: Ping timeout: 252 seconds [08:40:12] strmpnk (u2261@gateway/web/irccloud.com/x-speymscfywwddvfa) joined #redis. [08:42:01] codeographer (~kylerober@24-176-254-168.dhcp.reno.nv.charter.com) joined #redis. [08:42:23] CoffeeIV (~rgr@rrcs-71-42-183-81.sw.biz.rr.com) joined #redis. [08:44:11] thehodge (~thehodge@82.109.33.196) left irc: Remote host closed the connection [08:44:32] stephank (~stephank@82.197.214.45) joined #redis. [08:44:35] thehodge (~thehodge@82.109.33.196) joined #redis. [08:46:03] thehodge (~thehodge@82.109.33.196) left irc: Read error: Operation timed out [08:47:59] tjholowaychuk (~tjholoway@S010658b03565e6c6.gv.shawcable.net) left irc: Quit: Bye! [08:48:40] nuba (~nuba@pauleira.com) joined #redis. [08:51:23] wilmoore (~wilmoore@70-89-165-49-ISTS-co.hfc.comcastbusiness.net) joined #redis. [08:51:37] perezd (~derek@108-71-92-105.lightspeed.sntcca.sbcglobal.net) joined #redis. [08:51:57] ceej (~anonymous@cpe-72-190-40-203.tx.res.rr.com) left irc: Quit: ceej [08:52:33] ceej (~anonymous@cpe-72-190-40-203.tx.res.rr.com) joined #redis. [08:58:01] am I missing something or is the credis library incomplete? [08:58:41] ie, there is no blpop at first glance. [09:00:11] dribdrab (~dribdrab@c-24-5-88-169.hsd1.ca.comcast.net) joined #redis. [09:01:30] dribdrab (~dribdrab@c-24-5-88-169.hsd1.ca.comcast.net) left irc: Client Quit [09:02:39] dribdrab (~dribdrab@c-24-5-88-169.hsd1.ca.comcast.net) joined #redis. [09:02:39] sigmonsay, you want to use hiredis. [09:04:13] thanks temoto [09:04:14] ampasowa (~ampasowa@41-218-233-118-adsl-dyn.4u.com.gh) joined #redis. [09:04:52] Nick change: wmoss|away -> wmoss [09:06:05] NetRoY (~NetRoY@122.167.90.12) left irc: Quit: NetRoY [09:06:37] muhqu (~Adium@port-6214.pppoe.wtnet.de) left irc: Quit: Leaving. [09:08:21] Swimming_Bird (~textual@64.70.114.89) joined #redis. [09:09:32] pharkmillups (~markphill@70-36-146-239.dsl.dynamic.sonic.net) joined #redis. [09:10:08] xcbt (~xcbt@208-100-139-67.bendbroadband.com) joined #redis. [09:10:27] Nick change: wmoss -> wmoss|away [09:11:34] pharkmillups (~markphill@70-36-146-239.dsl.dynamic.sonic.net) left irc: Client Quit [09:11:50] pharkmillups (~markphill@70-36-146-239.dsl.dynamic.sonic.net) joined #redis. [09:15:43] rittyan (~rittyan@176.14.223.175) joined #redis. [09:16:16] ampasowa (~ampasowa@41-218-233-118-adsl-dyn.4u.com.gh) left irc: Quit: Leaving. [09:16:44] mhald (~mhald@c-76-115-96-86.hsd1.or.comcast.net) joined #redis. [09:17:01] andymccurdy (~andymccur@c-67-188-242-100.hsd1.ca.comcast.net) joined #redis. [09:18:03] io_syl (~io_syl@unaffiliated/steph021) joined #redis. [09:20:07] ncode (~ncode@187.45.254.95) joined #redis. [09:20:07] ncode (~ncode@187.45.254.95) left irc: Changing host [09:20:07] ncode (~ncode@unaffiliated/ncode) joined #redis. [09:22:01] Nick change: wmoss|away -> wmoss [09:22:33] CoffeeIV (~rgr@rrcs-71-42-183-81.sw.biz.rr.com) left irc: Ping timeout: 255 seconds [09:31:08] kenperkins (~textual@50-47-18-37.evrt.wa.frontiernet.net) left irc: Quit: Computer has gone to sleep. [09:31:37] andymccurdy (~andymccur@c-67-188-242-100.hsd1.ca.comcast.net) left irc: Quit: Computer has gone to sleep. [09:32:32] KevBurnsJr (~KevBurnsJ@50.0.103.39) joined #redis. [09:34:20] NetRoY (~NetRoY@122.167.90.12) joined #redis. [09:34:21] Jrz (~jrz@d152222.upc-d.chello.nl) joined #redis. [09:35:39] seppo00101 (~Adium@200.69.194.105) joined #redis. [09:37:32] rb2k (~rb2k@2001:6f8:1334:0:2044:e751:3232:a3b8) joined #redis. [09:37:42] ncode (~ncode@unaffiliated/ncode) left irc: Quit: Textual IRC Client: http://www.textualapp.com/ [09:43:04] soveran (~soveran@186.19.214.247) joined #redis. [09:43:43] ncode (~ncode@187.45.254.95) joined #redis. [09:43:43] ncode (~ncode@187.45.254.95) left irc: Changing host [09:43:43] ncode (~ncode@unaffiliated/ncode) joined #redis. [09:44:13] lux_ (~lux@151.59.26.6) joined #redis. [09:44:39] Nick change: lux_ -> Guest45100 [09:46:07] CoffeeIV (~rgr@dsl093-217-226.aus1.dsl.speakeasy.net) joined #redis. [09:47:33] lux___ (~lux@ppp-19-144.25-151.libero.it) left irc: Ping timeout: 245 seconds [09:50:59] zimsim (~simon@ip1.c294.amb153.cust.comxnet.dk) joined #redis. [09:52:08] luckyruby (~luckyruby@rrcs-24-129-162-10.se.biz.rr.com) joined #redis. [09:52:44] ncode (~ncode@unaffiliated/ncode) left irc: Quit: Textual IRC Client: http://www.textualapp.com/ [09:53:06] luckyruby (~luckyruby@rrcs-24-129-162-10.se.biz.rr.com) left irc: Remote host closed the connection [09:54:06] sklee (~simon@ip1.c294.amb153.cust.comxnet.dk) joined #redis. [09:54:18] zimsim (~simon@ip1.c294.amb153.cust.comxnet.dk) left irc: Client Quit [09:54:55] jacqui: ping [09:57:51] luckyruby (~luckyruby@rrcs-24-129-162-10.se.biz.rr.com) joined #redis. [09:58:05] spasquali (~spasquali@64.61.91.74) joined #redis. [10:01:53] twittard_ (~twittard@cpe-76-169-74-39.socal.res.rr.com) joined #redis. [10:04:07] fmeyer (~fmeyer@186.220.10.39) joined #redis. [10:04:21] kenperkins (~textual@174-24-164-49.tukw.qwest.net) joined #redis. [10:04:24] twittard (~twittard@vpn.lax.truecarcorp.com) left irc: Ping timeout: 255 seconds [10:04:24] Nick change: twittard_ -> twittard [10:05:37] ncode (~ncode@187.45.254.95) joined #redis. [10:05:37] ncode (~ncode@187.45.254.95) left irc: Changing host [10:05:37] ncode (~ncode@unaffiliated/ncode) joined #redis. [10:05:49] temoto (~temoto@81.19.90.164) left irc: Read error: Operation timed out [10:09:00] twittard (~twittard@cpe-76-169-74-39.socal.res.rr.com) left irc: Quit: twittard [10:09:19] Ambis (ambis@kapsi.fi) left #redis. [10:09:59] seppo00101 (~Adium@200.69.194.105) left #redis. [10:10:23] fmeyer (~fmeyer@186.220.10.39) left irc: Remote host closed the connection [10:10:57] thehodge (~thehodge@host86-168-216-123.range86-168.btcentralplus.com) joined #redis. [10:11:59] martincozzi (~martincoz@c-67-180-194-70.hsd1.ca.comcast.net) left irc: Quit: martincozzi [10:12:26] fmeyer (~fmeyer@186.220.10.39) joined #redis. [10:15:07] thehodge (~thehodge@host86-168-216-123.range86-168.btcentralplus.com) left irc: Ping timeout: 240 seconds [10:18:31] mactenchi (~anonymous@gwfw1-nat.booyahcorp.com) joined #redis. [10:18:34] fmeyer (~fmeyer@186.220.10.39) left irc: Remote host closed the connection [10:20:20] nsalvo (~nsalvo@190.55.32.117) left irc: Quit: leaving [10:21:27] ampasowa (~ampasowa@41-218-233-118-adsl-dyn.4u.com.gh) joined #redis. [10:25:04] shaiguitar (~shaiguita@shairosenfeld.com) left #redis. [10:26:01] ampasowa (~ampasowa@41-218-233-118-adsl-dyn.4u.com.gh) left irc: Client Quit [10:28:35] mactenchi (~anonymous@gwfw1-nat.booyahcorp.com) left irc: Quit: mactenchi [10:32:35] nsalvo (~nsalvo@190.55.32.117) joined #redis. [10:32:55] mactenchi (~anonymous@gwfw1-nat.booyahcorp.com) joined #redis. [10:32:57] spasquali (~spasquali@64.61.91.74) left #redis. [10:34:13] jano (~djanowski@host243.181-2-153.telecom.net.ar) joined #redis. [10:35:29] mrb_bk: yo! [10:35:43] mrb_bk: i was rebooting servers like it's going out of style. what's up? [10:35:49] h0bbit (~vedang@121.243.225.226) left irc: Ping timeout: 276 seconds [10:38:07] twittard (~twittard@wc.lax.truecarcorp.com) joined #redis. [10:38:23] dribdrab (~dribdrab@c-24-5-88-169.hsd1.ca.comcast.net) left irc: Quit: dribdrab [10:40:52] Kosma (kosma@host-6-66.internetunion.pl) left irc: Remote host closed the connection [10:42:33] martincozzi (~martincoz@209.66.114.6) joined #redis. [10:47:04] Guest45100 (~lux@151.59.26.6) left irc: Read error: Connection reset by peer [10:54:53] wam (~wam@unaffiliated/wam) left irc: Quit: Ex-Chat [10:56:47] Swimming_Bird (~textual@64.70.114.89) left irc: Quit: Computer has gone to sleep. [11:05:18] nu7hatch_ (~cubox@r186-48-207-140.dialup.adsl.anteldata.net.uy) joined #redis. [11:05:59] elcuervo (~elcuervo@r186-48-207-140.dialup.adsl.anteldata.net.uy) left irc: Read error: Connection reset by peer [11:06:00] nu7hatch_ (~cubox@r186-48-207-140.dialup.adsl.anteldata.net.uy) left irc: Read error: Connection reset by peer [11:06:50] elcuervo (~elcuervo@r186-48-238-175.dialup.adsl.anteldata.net.uy) joined #redis. [11:07:42] nu7hatch (~cubox@r186-48-220-126.dialup.adsl.anteldata.net.uy) left irc: Ping timeout: 248 seconds [11:07:49] nu7hatch (~cubox@r186-48-202-85.dialup.adsl.anteldata.net.uy) joined #redis. [11:08:52] chrisjones (~chrisjone@12.200.106.82) joined #redis. [11:15:14] pronam (~pronam@122.161.28.159) joined #redis. [11:15:24] dribdrab (~dribdrab@c-24-5-88-169.hsd1.ca.comcast.net) joined #redis. [11:15:50] jlewis (~jlewis@unaffiliated/jordanlewis) joined #redis. [11:23:52] nsalvo (~nsalvo@190.55.32.117) left irc: Quit: leaving [11:29:05] chrisjones (~chrisjone@12.200.106.82) left irc: Quit: Textual IRC Client: http://www.textualapp.com/ [11:39:56] perezd_ (~derek@108-71-92-105.lightspeed.sntcca.sbcglobal.net) joined #redis. [11:42:53] dribdrab (~dribdrab@c-24-5-88-169.hsd1.ca.comcast.net) left irc: Quit: dribdrab [11:43:58] perezd (~derek@108-71-92-105.lightspeed.sntcca.sbcglobal.net) left irc: Ping timeout: 248 seconds [11:43:58] Nick change: perezd_ -> perezd [11:44:49] CoffeeIV (~rgr@dsl093-217-226.aus1.dsl.speakeasy.net) left irc: Ping timeout: 252 seconds [11:57:09] sklee (~simon@ip1.c294.amb153.cust.comxnet.dk) left irc: Remote host closed the connection [12:02:46] woeye (~woeye@ppp-93-104-49-112.dynamic.mnet-online.de) joined #redis. [12:03:08] woeye (~woeye@ppp-93-104-49-112.dynamic.mnet-online.de) left #redis. [12:09:38] jscheel (~jscheel@drupal.org/user/116197/view) joined #redis. [12:12:16] elcuervo_ (~elcuervo@r186-48-202-85.dialup.adsl.anteldata.net.uy) joined #redis. [12:14:01] dribdrab (~dribdrab@70-36-146-235.dsl.dynamic.sonic.net) joined #redis. [12:14:47] elcuervo (~elcuervo@r186-48-238-175.dialup.adsl.anteldata.net.uy) left irc: Ping timeout: 240 seconds [12:16:06] davehimself (~davehimse@c-98-200-201-146.hsd1.tx.comcast.net) joined #redis. [12:16:39] andymccurdy (~andymccur@69.12.160.66) joined #redis. [12:17:55] nu7hatch_ (~cubox@r186-48-202-85.dialup.adsl.anteldata.net.uy) joined #redis. [12:20:02] nu7hatch (~cubox@r186-48-202-85.dialup.adsl.anteldata.net.uy) left irc: Ping timeout: 252 seconds [12:20:03] Nick change: nu7hatch_ -> nu7hatch [12:23:58] dialtone (~dialtone@unaffiliated/dialtone) joined #redis. [12:24:30] senderista (~senderist@216.161.248.54) left irc: Quit: senderista [12:29:42] johnsanders (~johnsande@c-69-181-21-76.hsd1.ca.comcast.net) left irc: Quit: Leaving... [12:39:27] __alex (~alex@g230199023.adsl.alicedsl.de) left irc: Ping timeout: 240 seconds [12:41:56] jano (~djanowski@host243.181-2-153.telecom.net.ar) left irc: Disconnected by services [12:41:57] jano_ (~djanowski@host1.186-111-191.telecom.net.ar) joined #redis. [12:44:21] ceej (~anonymous@cpe-72-190-40-203.tx.res.rr.com) left irc: Quit: ceej [12:44:59] ceej (~anonymous@cpe-72-190-40-203.tx.res.rr.com) joined #redis. [12:45:30] ampasowa (~ampasowa@41-218-233-118-adsl-dyn.4u.com.gh) joined #redis. [12:47:11] CoffeeIV (~rgr@rrcs-71-42-183-81.sw.biz.rr.com) joined #redis. [12:47:31] __alex (~alex@g225249149.adsl.alicedsl.de) joined #redis. [12:49:42] I am trying to use the predis PHP / PEAR client, and I'm having problems including it properly in my script - it uses some autoloader.php that doesn't work in php 5.3, or something called composer that seems to have some overhead to setting up - is there another php client that is more standard and accepted ? [12:54:44] RobWC (~Adium@natint3.juniper.net) joined #redis. [12:58:56] rb2k (~rb2k@2001:6f8:1334:0:2044:e751:3232:a3b8) left irc: Quit: rb2k [13:04:03] dribdrab (~dribdrab@70-36-146-235.dsl.dynamic.sonic.net) left irc: Quit: dribdrab [13:07:00] johnsanders (~johnsande@209.66.114.6) joined #redis. [13:09:03] johnsanders (~johnsande@209.66.114.6) left irc: Read error: Connection reset by peer [13:11:20] johnsanders (~johnsande@209.66.114.6) joined #redis. [13:15:27] Nick change: elcuervo_ -> elcuervo [13:17:41] napperjabber (~napperjab@149.48.161.10) left irc: Quit: napperjabber [13:21:19] xcbt (~xcbt@208-100-139-67.bendbroadband.com) left irc: Remote host closed the connection [13:33:40] senderista (~senderist@216.161.248.54) joined #redis. [13:33:53] bmizerany (~bmizerany@204.28.124.126) joined #redis. [13:38:07] jano_ (~djanowski@host1.186-111-191.telecom.net.ar) left irc: Ping timeout: 240 seconds [13:39:00] jonesy (~jonesy@68.64.144.221) left irc: Quit: Computer has gone to sleep. [13:41:21] pierroooo (~pierrooo@AGrenoble-257-1-7-204.w86-193.abo.wanadoo.fr) left #redis ("Leaving"). [13:44:47] ampasowa (~ampasowa@41-218-233-118-adsl-dyn.4u.com.gh) left irc: Quit: Leaving. [13:49:27] xcbt (~xcbt@208-100-139-67.bendbroadband.com) joined #redis. [13:53:21] radiocats (~chatzilla@h-64-236-128-42.nat.aol.com) left irc: Remote host closed the connection [14:00:36] petercooper (~petercoop@82.144.254.2) joined #redis. [14:01:59] Jrz (~jrz@d152222.upc-d.chello.nl) left irc: Quit: Computer has gone to sleep. [14:04:56] petercooper (~petercoop@82.144.254.2) left #redis. [14:06:18] pronam (~pronam@122.161.28.159) left irc: Ping timeout: 255 seconds [14:08:14] ank (~ank@c-67-172-16-188.hsd1.pa.comcast.net) left irc: Quit: ank [14:09:48] Nick change: Creap -> jacobrask [14:12:33] dribdrab (~dribdrab@208.90.215.181) joined #redis. [14:14:27] jacobrask (~jacob@jacobrask.net) left #redis. [14:20:37] hahuang65 (~hahuang65@204.11.231.186.static.etheric.net) joined #redis. [14:30:15] jnns (~jnns@e179083186.adsl.alicedsl.de) joined #redis. [14:31:28] ncode (~ncode@unaffiliated/ncode) left irc: Quit: Computer has gone to sleep. [14:33:27] __alex (~alex@g225249149.adsl.alicedsl.de) left irc: Ping timeout: 240 seconds [14:34:56] bmizerany (~bmizerany@204.28.124.126) left irc: Remote host closed the connection [14:44:28] bmizerany (~bmizerany@204.28.124.126) joined #redis. [14:47:47] davehimself (~davehimse@c-98-200-201-146.hsd1.tx.comcast.net) left irc: Ping timeout: 240 seconds [14:50:49] NetRoY (~NetRoY@122.167.90.12) left irc: Quit: NetRoY [14:53:30] hikeonpast (~hikeonpas@71-95-209-244.static.mtpk.ca.charter.com) joined #redis. [14:55:16] p1d (~p1d@ns1.vonaffenfels.de) left irc: Quit: ... [14:57:21] el_kevino (~el_kevino@216.249.7.209.tor.pathcom.com) left irc: Remote host closed the connection [14:58:09] mhald (~mhald@c-76-115-96-86.hsd1.or.comcast.net) left irc: Quit: mhald [15:00:45] jnns (~jnns@e179083186.adsl.alicedsl.de) left irc: Quit: leaving [15:01:15] ampasowa (~ampasowa@41-218-233-118-adsl-dyn.4u.com.gh) joined #redis. [15:03:58] ampasowa (~ampasowa@41-218-233-118-adsl-dyn.4u.com.gh) left #redis. [15:05:24] dribdrab (~dribdrab@208.90.215.181) left irc: Quit: dribdrab [15:05:39] napperjabber (~napperjab@c-98-231-251-134.hsd1.md.comcast.net) joined #redis. [15:09:21] napperjabber (~napperjab@c-98-231-251-134.hsd1.md.comcast.net) left irc: Remote host closed the connection [15:16:39] dribdrab (~dribdrab@173.247.200.5) joined #redis. [15:19:20] drbobbeaty (~drbobbeat@38.98.137.29) left irc: Quit: drbobbeaty [15:22:20] bmizerany (~bmizerany@204.28.124.126) left irc: Remote host closed the connection [15:25:10] dribdrab (~dribdrab@173.247.200.5) left irc: Quit: dribdrab [15:25:29] d0k (~d0k@p509230E0.dip.t-dialin.net) left irc: Quit: he does that [15:26:25] thehodge (~thehodge@cpc5-seac20-2-0-cust310.7-2.cable.virginmedia.com) joined #redis. [15:28:20] rurufufuss (~rurufufus@115-64-27-246.static.tpgi.com.au) joined #redis. [15:32:10] RobWC (~Adium@natint3.juniper.net) left irc: Quit: Leaving. [15:32:26] dribdrab (~dribdrab@70-36-146-235.dsl.dynamic.sonic.net) joined #redis. [15:33:31] seivan (~seivan@cm242.eta204.maxonline.com.sg) joined #redis. [15:44:51] fanjie (~fanjie@c-67-180-77-58.hsd1.ca.comcast.net) joined #redis. [15:45:22] KevBurnsJr (~KevBurnsJ@50.0.103.39) left irc: [15:48:42] luckyruby (~luckyruby@rrcs-24-129-162-10.se.biz.rr.com) left irc: Remote host closed the connection [15:49:11] io_syl (~io_syl@unaffiliated/steph021) left irc: Quit: Computer has gone to sleep. [16:00:32] chrisjones (~chrisjone@ip68-224-245-47.lv.lv.cox.net) joined #redis. [16:03:48] jnns (~jnns@e179083186.adsl.alicedsl.de) joined #redis. [16:05:57] xcbt (~xcbt@208-100-139-67.bendbroadband.com) left irc: Remote host closed the connection [16:07:03] Hi, I'd like to store recipes in a database and query it with ingredient IDs so that it returns cookable recipes ordered in ascending count of missing ingredients. Is Redis a feasable solution for this? [16:07:10] nicholasf (~nicholasf@ppp196-159.static.internode.on.net) joined #redis. [16:08:23] lux___ (~lux@ppp-2-152.25-151.libero.it) joined #redis. [16:08:49] kenperkins (~textual@174-24-164-49.tukw.qwest.net) left irc: Quit: Computer has gone to sleep. [16:16:59] insin (~insin@host31-53-218-142.range31-53.btcentralplus.com) joined #redis. [16:19:37] lux_ (~lux@ppp-215-36.25-151.libero.it) joined #redis. [16:20:02] Nick change: lux_ -> Guest84055 [16:20:20] jnns: I dunno, but you better _cook_ up a solution [16:22:05] nicholasf (~nicholasf@ppp196-159.static.internode.on.net) left irc: Remote host closed the connection [16:22:38] lux___ (~lux@ppp-2-152.25-151.libero.it) left irc: Ping timeout: 252 seconds [16:22:54] Nick change: wmoss -> wmoss|away [16:23:16] elcuervo (~elcuervo@r186-48-202-85.dialup.adsl.anteldata.net.uy) left irc: Ping timeout: 240 seconds [16:23:19] lux___ (~lux@ppp-27-47.25-151.libero.it) joined #redis. [16:24:22] Guest84055 (~lux@ppp-215-36.25-151.libero.it) left irc: Ping timeout: 248 seconds [16:29:25] thehodge (~thehodge@cpc5-seac20-2-0-cust310.7-2.cable.virginmedia.com) left irc: Remote host closed the connection [16:29:51] thehodge (~thehodge@cpc5-seac20-2-0-cust310.7-2.cable.virginmedia.com) joined #redis. [16:30:33] mhald (~mhald@c-76-115-96-86.hsd1.or.comcast.net) joined #redis. [16:34:16] thehodge (~thehodge@cpc5-seac20-2-0-cust310.7-2.cable.virginmedia.com) left irc: Ping timeout: 240 seconds [16:34:18] io_syl (~io_syl@adsl-69-105-118-125.dsl.pltn13.pacbell.net) joined #redis. [16:34:18] io_syl (~io_syl@adsl-69-105-118-125.dsl.pltn13.pacbell.net) left irc: Changing host [16:34:19] io_syl (~io_syl@unaffiliated/steph021) joined #redis. [16:36:39] nicholasf (~nicholasf@ppp196-159.static.internode.on.net) joined #redis. [16:42:42] jonesy (~jonesy@pool-173-71-115-162.cmdnnj.fios.verizon.net) joined #redis. [16:49:20] rittyan (~rittyan@176.14.223.175) left irc: Remote host closed the connection [16:55:58] Nick change: NuckOff -> Nuck [16:57:27] wilmoore (~wilmoore@70-89-165-49-ISTS-co.hfc.comcastbusiness.net) left irc: Ping timeout: 240 seconds [16:57:52] jscheel (~jscheel@drupal.org/user/116197/view) left irc: Quit: jscheel [17:00:22] RobWC (~Adium@2001:470:1f05:f2a:406d:361f:45b0:b023) joined #redis. [17:00:49] brianseeders (~BS@108-216-88-132.lightspeed.bcvloh.sbcglobal.net) joined #redis. [17:03:12] lux___ (~lux@ppp-27-47.25-151.libero.it) left irc: Quit: Leaving [17:09:55] dialtone (~dialtone@unaffiliated/dialtone) left irc: Quit: leaving [17:13:52] perezd (~derek@108-71-92-105.lightspeed.sntcca.sbcglobal.net) left irc: Quit: perezd [17:16:44] thehodge (~thehodge@cpc5-seac20-2-0-cust310.7-2.cable.virginmedia.com) joined #redis. [17:16:59] thehodge (~thehodge@cpc5-seac20-2-0-cust310.7-2.cable.virginmedia.com) left irc: Remote host closed the connection [17:17:23] thehodge (~thehodge@2001:470:1f09:13a3:2d54:b502:954f:ed1a) joined #redis. [17:22:02] thehodge (~thehodge@2001:470:1f09:13a3:2d54:b502:954f:ed1a) left irc: Ping timeout: 252 seconds [17:22:37] seppo0010 (~Adium@186.19.19.229) joined #redis. [17:23:53] tilgovi (~randall@couchdb/developer/tilgovi) joined #redis. [17:24:02] martincozzi (~martincoz@209.66.114.6) left irc: Quit: martincozzi [17:25:03] RobWC (~Adium@2001:470:1f05:f2a:406d:361f:45b0:b023) left irc: Quit: Leaving. [17:25:05] martincozzi (~martincoz@209.66.114.6) joined #redis. [17:28:43] soveran (~soveran@186.19.214.247) left irc: Remote host closed the connection [17:32:05] martincozzi (~martincoz@209.66.114.6) left irc: Quit: martincozzi [17:32:59] nu7hatch (~cubox@r186-48-202-85.dialup.adsl.anteldata.net.uy) left irc: Quit: nu7hatch [17:34:27] hikeonpast (~hikeonpas@71-95-209-244.static.mtpk.ca.charter.com) left irc: Ping timeout: 240 seconds [17:40:36] codeographer (~kylerober@24-176-254-168.dhcp.reno.nv.charter.com) left irc: Quit: codeographer [17:42:03] luckyruby (~luckyruby@125-187.96-97.tampabay.res.rr.com) joined #redis. [17:42:05] rurufufuss (~rurufufus@115-64-27-246.static.tpgi.com.au) left irc: Read error: Connection reset by peer [17:50:10] senderista (~senderist@216.161.248.54) left irc: Quit: senderista [17:50:39] jnns (~jnns@e179083186.adsl.alicedsl.de) left irc: Ping timeout: 252 seconds [17:57:05] pharkmillups (~markphill@70-36-146-239.dsl.dynamic.sonic.net) left irc: Quit: pharkmillups [17:59:04] tilgovi (~randall@couchdb/developer/tilgovi) left irc: Ping timeout: 268 seconds [18:20:44] andymccurdy (~andymccur@69.12.160.66) left irc: Ping timeout: 252 seconds [18:24:41] tilgovi (~randall@couchdb/developer/tilgovi) joined #redis. [18:28:17] pietern (~pieter@208.91.1.14) left irc: Quit: pietern [18:28:52] mattbillenstein (~Adium@cpe-75-84-198-75.socal.res.rr.com) left #redis. [18:29:24] johnsanders (~johnsande@209.66.114.6) left irc: Quit: Leaving... [18:30:33] ceej (~anonymous@cpe-72-190-40-203.tx.res.rr.com) left irc: Quit: ceej [18:35:23] seppo0010 (~Adium@186.19.19.229) left irc: Quit: Leaving. [18:38:44] hahuang65 (~hahuang65@204.11.231.186.static.etheric.net) left irc: Quit: Computer has gone to sleep. [18:44:11] wingie (~wingie@89-253-67-245.customers.ownit.se) joined #redis. [18:44:15] chrisjones (~chrisjone@ip68-224-245-47.lv.lv.cox.net) left irc: Quit: Textual IRC Client: http://www.textualapp.com/ [18:50:42] dribdrab (~dribdrab@70-36-146-235.dsl.dynamic.sonic.net) left irc: Quit: dribdrab [19:07:52] blueadept (~blueadept@unaffiliated/blueadept) joined #redis. [19:12:37] blueadept` (~blueadept@243-36.187-72.tampabay.res.rr.com) joined #redis. [19:13:39] blueadept` (~blueadept@243-36.187-72.tampabay.res.rr.com) left irc: Client Quit [19:14:03] blueadept` (~blueadept@243-36.187-72.tampabay.res.rr.com) joined #redis. [19:15:16] blueadept (~blueadept@unaffiliated/blueadept) left irc: Ping timeout: 240 seconds [19:18:48] twittard (~twittard@wc.lax.truecarcorp.com) left irc: Quit: twittard [19:20:52] napperjabber (~napperjab@141.sub-174-252-117.myvzw.com) joined #redis. [19:42:20] tilgovi (~randall@couchdb/developer/tilgovi) left irc: Remote host closed the connection [19:46:44] jonesy (~jonesy@pool-173-71-115-162.cmdnnj.fios.verizon.net) left irc: Quit: Computer has gone to sleep. [19:53:40] luckyruby (~luckyruby@125-187.96-97.tampabay.res.rr.com) left irc: Remote host closed the connection [19:55:35] luckyruby (~luckyruby@125-187.96-97.tampabay.res.rr.com) joined #redis. [20:17:52] _macro (~Neil@c-67-169-183-90.hsd1.ca.comcast.net) joined #redis. [20:26:32] pluc (~pluc@bas1-montreal02-1096728176.dsl.bell.ca) joined #redis. [20:29:05] insin (~insin@host31-53-218-142.range31-53.btcentralplus.com) left irc: Quit: What's the point in giving us haaaaannnds? [20:40:07] Wombert (~Wombert@dslb-092-074-120-056.pools.arcor-ip.net) left irc: Quit: Wombert [20:57:38] luckyruby (~luckyruby@125-187.96-97.tampabay.res.rr.com) left irc: Remote host closed the connection [21:01:04] napperjabber (~napperjab@141.sub-174-252-117.myvzw.com) left irc: Quit: napperjabber [21:01:07] jperras (~jperras@li245-112.members.linode.com) left irc: Ping timeout: 240 seconds [21:01:24] uberdog (a6fa01c4@gateway/web/freenode/ip.166.250.1.196) joined #redis. [21:05:37] I'm guessing this is a common error, but I can't find anything online about it. "Error: Connection in pub/sub mode, only pub/sub commands may be used" I'm getting it on heroku running node.js and accessing Redis To Go. The app works fine for me running against any version of redis from 2.0 to 2.4 locally and on an ec2 instance with redis running on the same server. [21:06:28] JeremyWei (~textual@122.193.209.13) joined #redis. [21:06:32] I can give the full stack trace if it'll help. [21:06:56] uberdog: Once you send a SUBSCRIBE/PSUBSCRIBE request to redis it changes the state of the connection such that it can only accept additional SUBSCRIBE/PSUBSCRIBE requests. [21:07:46] If you did something like "SUBSCRIBE foo" then "GET bar" it'd give that error. [21:10:04] twittard (~twittard@cpe-76-169-74-39.socal.res.rr.com) joined #redis. [21:13:56] brianseeders (~BS@108-216-88-132.lightspeed.bcvloh.sbcglobal.net) left irc: Ping timeout: 268 seconds [21:14:01] Yeah, vsmatck, I've picked that up in trying to debug this. The thing is, this runs everywhere but connecting to Redis To Go. You can see the code yourself. https://github.com/asalant/Realtime-Demo [21:16:51] I've modified it a tiny bit to run on heroku and connect to Redis To Go, but that's pretty much it. [21:22:42] kenperkins (~textual@50-47-18-37.evrt.wa.frontiernet.net) joined #redis. [21:27:31] twittard (~twittard@cpe-76-169-74-39.socal.res.rr.com) left irc: Quit: twittard [21:50:21] grampajoe (~grampa@cpe-174-103-205-247.new.res.rr.com) joined #redis. [22:03:49] PiotrSikora (~none@nginx/adept/piotrsikora) left irc: Excess Flood [22:04:52] PiotrSikora (~none@nginx/adept/piotrsikora) joined #redis. [22:10:42] uberdog (a6fa01c4@gateway/web/freenode/ip.166.250.1.196) left irc: Ping timeout: 258 seconds [22:13:25] grampajoe (~grampa@cpe-174-103-205-247.new.res.rr.com) left irc: Quit: Bye! [22:40:44] primdahl (~primdahl@c-98-234-233-144.hsd1.ca.comcast.net) joined #redis. [22:52:20] tav_ (~tav@host-92-20-7-192.as13285.net) joined #redis. [23:18:00] horsey_ (~horsey@203.92.58.165) joined #redis. [23:22:10] horsey (~horsey@27.34.244.74) left irc: Ping timeout: 276 seconds [23:23:33] kenperkins (~textual@50-47-18-37.evrt.wa.frontiernet.net) left irc: Quit: Computer has gone to sleep. [23:23:38] Wombert (~Wombert@dslb-092-074-120-056.pools.arcor-ip.net) joined #redis. [23:23:58] NetRoY (~NetRoY@122.167.95.54) joined #redis. [23:35:38] JeremyWei (~textual@122.193.209.13) left irc: Ping timeout: 240 seconds [23:40:52] nicholasf (~nicholasf@ppp196-159.static.internode.on.net) left irc: Remote host closed the connection [23:54:38] pronam (~pronam@122.161.15.212) joined #redis. [00:00:00] --- Sat Dec 17 2011