Re: poe.perl.org down?

2009-07-14 Thread Phil Whelan
I couldn't see it early either, but seems to available now. Is it back for you, Larry? Cheers, Phil On Tue, Jul 14, 2009 at 4:12 PM, David Davisdavid.da...@gmail.com wrote: Have you tried talking HTTP to it? :) It works for me.  Could you elaborate on the problem? David Davis ☄ Software

Re: undef for @_ arglist when starting a poe session

2009-07-11 Thread Phil Whelan
Hi Josh, On Fri, Jul 10, 2009 at 4:58 PM, Josh803316josh803...@gmail.com wrote: args = [ $obj, $queue_manager ] Are these being used / created? Phil

Re: POE site not displayed correctly under IE7

2009-06-13 Thread Phil Whelan
Hi Rocco, You can change this in your global.css #navigation { FONT-SIZE: 8pt; WIDTH: 100px } to this... #navigation { float: left; FONT-SIZE: 8pt; WIDTH: 100px } Cheers, Phil On Sat, Jun 13, 2009 at 6:52 PM, Rocco Caputorcap...@pobox.com wrote: Sorry about that.  

Re: Need some help...

2009-06-13 Thread Phil Whelan
Hi Rob, I think you have the POE::Sesssion-create syntax slightly wrong. This is from the docs POE::Session-create( object_states = [ $object_1 = { event_1a = method_1a }, $object_2 = { event_2a = method_2a }, ], inline_states = { event_3 = \piece_of_code,

Re: Suggestions on which poe DBI module to use

2009-04-28 Thread Phil Whelan
On Tue, Apr 28, 2009 at 6:46 AM, Brett Paden pa...@multiply.com wrote: The app the uses EasyDBI is running in production servers and shuffles around 2TB of uploaded user data a day; I have ran into 0 problems. Same here. We've been running this in a daemon that processes very large volumes of

Re: Suggestions on which poe DBI module to use

2009-04-27 Thread Phil Whelan
Hi, I like POE-Component-EasyDBI Actually, I've written a wrapper module POE-Component-EasyDBI-Multiplex, which I've not yet made public, but we're using to manage a pool of EasyDBI connections. POE-Component-EasyDBI-Multiplex uses the same interface as POE-Component-EasyDBI, but the whole API

Re: Suggestions on which poe DBI module to use

2009-04-27 Thread Phil Whelan
On Mon, Apr 27, 2009 at 1:32 PM, David Davis david.da...@gmail.com wrote: I'd like to take a look at PoCo-EasyDBI-Multiplex. Btw, I'm the EasyDBI author, so you can direct any questions about it to the list. David Davis Cool. Here it is. $ cat

Re: Possible test case and info on CPAN RT 26185 Memory Leak POE::Component::Client::HTTP

2008-03-19 Thread Phil Whelan
Hi Christian, What are you using to measure the memory usage? We have found GTop to be most reliable. use GTop; my $mem = GTop-new-proc_mem($$)-size; I cannot see anything in the code, but you may want to turn on options = { trace = 1} in the sessions to see how often things are being called.

Re: calling $poe_kernel more than once

2008-03-16 Thread Phil Whelan
, the question is: how to detect that the POE loop is active? Phil Whelan wrote: Hi Yuri, What will happen if $poe_kernel-run called more than once? What if it is called while in the POE loop? I think it may tear a hole in the space-time continuum! I'd

Re: calling $poe_kernel more than once

2008-03-14 Thread Phil Whelan
Hi Yuri, What will happen if $poe_kernel-run called more than once? What if it is called while in the POE loop? I think it may tear a hole in the space-time continuum! I'd be interested to see how you've structured your code to get this to be called twice. I usually just do the

Re: Chat Serve/Client

2007-12-23 Thread Phil Whelan
Hi Jamie, On Dec 23, 2007 10:55 AM, Jamie Lahowetz [EMAIL PROTECTED] wrote: I am trying to understand/create a chat server/client for a project. I noticed that there is a chat server on POE Cookbook and I have been using it POE::Component::Client::TCP-new ServerInput = sub {

Re: POE::Filter::Stomp and POE::Component::Client::Stomp

2007-11-28 Thread Phil Whelan
::Filter::Stomp can be found here: http://svn.endeworks.jp/svn/perl/POE-Filter-Stomp/trunk -- Phil Whelan Product Development Tel: +1.778.785.6145 Fax: +1.604.677.6320 Web: http://mailchannels.com MailChannels - Reliable Email Delivery (TM)

Re: POE::Kernel patch for propagation of exceptions

2007-07-24 Thread Phil Whelan
on this. Thanks, Phil -- Phil Whelan Product Development Tel: +1.778.785.6145 Fax: +1.604.677.6320 Web: http://mailchannels.com MailChannels - Reliable Email Delivery (TM) On 24/07/07, Rocco Caputo [EMAIL PROTECTED] wrote: Thanks for the Path, Phil. Unfortunately I can't apply it. While it allows your test

Re: Catching DIE signal from detached sessions

2007-07-19 Thread Phil Whelan
We're also currently looking at catching exceptions using the DIE signal, but have found the behavior of POE different to what would expect. The signal is not propagated to the parent sessions, but is sent to all the children. If sig_handled is set then it is still propagated to the remaining

POE::Kernel patch for propagation of exceptions

2007-07-17 Thread Phil Whelan
Hi, Where should I send my patch to POE::Kernel? The propagation of exceptions did not seem to be working as documented. Thanks, Phil --- /usr/local/share/perl/5.8.8/POE/Kernel.pm 2007-07-17 16:54:57.0 -0700 +++ /usr/local/share/perl/5.8.8/POE/Kernel.pm 2007-07-17