in reply to How to share a file in memory instead of hard disk

If you're talking about sharing data in memory between processes (including forked processes), you might look at Win32::MMF::Shareable. It ought to do the trick. Note however, that Roger identified an issue that prevents this module from doing its job unless you require it in each process post-forking. For that discussion, look at Perl forking and shared memory strangeness under Windows.


Dave