mr_p has asked for the wisdom of the Perl Monks concerning the following question:
Hello,
Does anyone know if Threads::Queue::Any is safe to use, Currently I am using Threads::Queue and queuing a stiring with '|' delimited and spliting string after dequeing it.
Or can anyone think of better way to do this? I still would like to used Threads::Queue though.
#Master thread $str="abc|def|xyz"; enqueue($str) #a thread code dequeue($str) ($a,$b,$c)= split($str);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Is this module safe to use -> Threads::Queue::Any
by BrowserUk (Patriarch) on Apr 16, 2010 at 16:02 UTC | |
by mr_p (Scribe) on Apr 16, 2010 at 17:10 UTC | |
by BrowserUk (Patriarch) on Apr 16, 2010 at 17:19 UTC | |
by mr_p (Scribe) on Apr 16, 2010 at 17:43 UTC | |
by BrowserUk (Patriarch) on Apr 16, 2010 at 17:58 UTC | |
by mr_p (Scribe) on Apr 16, 2010 at 19:07 UTC | |
by BrowserUk (Patriarch) on Apr 16, 2010 at 19:12 UTC | |
|