in reply to Access shared memory from Perl?

I would recommend Tie::Win32MemMap --- That way you don't have to worry about serializing perl data!

Replies are listed 'Best First'.
Re: Re: Access shared memory from Perl?
by John M. Dlugosz (Monsignor) on Nov 08, 2003 at 05:29 UTC
    Hmm, it looks like that uses the shared memory block in its own way as a keyed database, so is only good if all programs use this module (and are in Perl). I want to alias a SV's storage to the memory-mapped area, and fiddle with the contents using pack/unpack for example.