Re: First post, new POE apprentice some doubts to clarify

2007-09-18 Thread Zack Payton
/Inter_Kernel_Communique ) > > On 9/18/07, Zack Payton <[EMAIL PROTECTED]> wrote: > > Marcel, > > > > Thanks for taking an interest in POE... please don't let my horrible > example > > deter you from reaping its' benefits. I am the author of that examp

Re: First post, new POE apprentice some doubts to clarify

2007-09-18 Thread Zack Payton
Marcel, Thanks for taking an interest in POE... please don't let my horrible example deter you from reaping its' benefits. I am the author of that example and you are completely right, it's an error on my part. The reason is that the 1..10 post statements simply put the call statements in a queu

Re: Win32 Wheel::Run Issues (Reformated)

2007-06-25 Thread Zack Payton
There is a limitation within win32 limits a single process from creating more than 64 processes, however, there is nothing to limit the processes that you create from creating their own child processes. With a little hackery you could use master slave model in which the master creates slaves that

Re: Win32 Wheel::Run Issues (Reformated)

2007-06-25 Thread Zack Payton
Jeremy, I assume you are probably running the POE version installed through ActiveStates ppm. This seems to have issues and I found that by installing through CPAN that there is a newer version of POE that seems to have a lot of performance issues fixed. Rather than installing through active sta

Re: EasyDBI replacement!

2007-06-20 Thread Zack Payton
Matt, You were right, thanks man for the tips. It was an failure to shut down a session combined with a cache issue. Setting no_cache also helped a lot. Thank you, Z On 6/19/07, Matt S Trout <[EMAIL PROTECTED]> wrote: On Tue, Jun 19, 2007 at 04:30:39PM -0400, Zack Payton

Re: EasyDBI replacement!

2007-06-19 Thread Zack Payton
down memory leaks beyond the information given here: http://poe.perl.org/?POE_FAQ/How_do_I_fix_memory_or_resource_leaks Z On 6/19/07, Matt S Trout <[EMAIL PROTECTED]> wrote: On Tue, Jun 19, 2007 at 03:58:12PM -0400, Zack Payton wrote: > Hello all, > > I've been using Eas

EasyDBI replacement!

2007-06-19 Thread Zack Payton
Hello all, I've been using EasyDBI for some time, and I just realized it was the source of some memory leaks... as I search the internet I find that it's a known issue. Doe! Can anyone recommend a cross platform replacement? Hopefully something that will work on Windows and Linux. Thank you! Z

Re: PoCo::IKC::Client example?

2007-06-06 Thread Zack Payton
Hi Eric, Here is some simple code to expose a state (read: remote method) to remote clients. #!/usr/bin/perl -w use strict; use POE; use POE::Component::IKC::Server; POE::Component::IKC::Server->spawn( port => 12345, name => 'Server', ); POE::Session->create( inline_states => { _s

Maximum concurrent TCP connections

2007-06-04 Thread Zack Payton
Hello all, First of all, I just wanted to give a great big thank you to Rocco and crew for creating and supporting POE. So far it has been a wonderful environment to work with. Secondly, I seem to have reached a limitation on the maximum number of concurrent TCP connections with POE::Component