I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time
for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or
on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news,
I hope these links will serve you well.
Hello. I am thinking that Storable might be an efficient way to send complex data structures to perl over the network from a C program. Is the file format documented anywhere? I need to know how to store hashes, arrays, strings, etc...
Thanks
Posted on 2008-11-16 11:02:09-08
by cndin response to 9161
Re: File Format
You can easily embed perl code into C programs (although it's better to just write in perl in the 1st place, and not use C at all...)
Your best solution would be to embed some perl that writes the STORABLE output you're trying to create, into whatever C program you're using.