Re: Storable Stream - Module namespace help

2010-08-09 Thread David Nicol
On Sun, Aug 8, 2010 at 4:58 AM, Marco Neves [ModAuthors] perl-module-auth...@knowhunter.cjb.net wrote: Hello,        In need for a way to transfer a large amount of small datastructures I created a module that stores and retrieves a stream of storables in a file. I'm confused -- a stream

Re: Storable Stream - Module namespace help

2010-08-09 Thread Marco Neves
On Monday 09 August 2010 20:59:50 David Nicol wrote: On Sun, Aug 8, 2010 at 4:58 AM, Marco Neves [ModAuthors] perl-module-auth...@knowhunter.cjb.net wrote: Hello, In need for a way to transfer a large amount of small datastructures I created a module that stores and retrieves a

Two modules with the same name (MooseX::SimpleConfig)

2010-08-09 Thread Zbigniew Lukasiak
Am I missing something? http://search.cpan.org/~bobtfish/MooseX-SimpleConfig-0.07/lib/MooseX/SimpleConfig.pm http://search.cpan.org/~chilts/SRS-EPP-Proxy-0.21/lib/SRS/EPP/Proxy/SimpleConfig.pm They do seem to be nearly identical copies - but I guess this can quickly change if one of them is

Re: Storable Stream - Module namespace help

2010-08-09 Thread Joshua ben Jore
On Mon, Aug 9, 2010 at 12:41 PM, Marco Neves perl-module-auth...@knowhunter.cjb.net wrote: On Monday 09 August 2010 20:59:50 David Nicol wrote: On Sun, Aug 8, 2010 at 4:58 AM, Marco Neves [ModAuthors] perl-module-auth...@knowhunter.cjb.net wrote: Hello,        In need for a way to

Re: Storable Stream - Module namespace help

2010-08-09 Thread Bill Ward
Does it actually use the Storable format/algorithm or are you using storable in a more generic sense of the word? If the latter, I'd avoid using it in the name of your module to avoid confusion. On Sun, Aug 8, 2010 at 2:58 AM, Marco Neves [ModAuthors] perl-module-auth...@knowhunter.cjb.net

Re: Storable Stream - Module namespace help

2010-08-09 Thread Aristotle Pagaltzis
* Joshua ben Jore twi...@gmail.com [2010-08-10 01:55]: Further, I would highly discourage you from naming anything using Storable with Archive because absolutely no one should ever consider actually *storing* a Storable blob. If you keep one around then you'll be tempted to read it in a client

Re: Storable Stream - Module namespace help

2010-08-09 Thread Aristotle Pagaltzis
* Joshua ben Jore twi...@gmail.com [2010-08-09 06:15]: I'd feel much better suggesting you consider streaming with YAML or JSON or something hand-rolled but anything but Storable. I would strike YAML from that list as well. Whereas JSON is great. Regards, -- Aristotle Pagaltzis //