perl进程之间怎么样快速地共享内存中的数据呢?

perl进程之间怎么样快速地共享内存中的数据呢?

看了
# perldoc -f shmget
       shmget KEY,SIZE,FLAGS
               Calls the System V IPC function shmget.  Returns the shared
               memory segment id, or the undefined value if there is an error.
               See also "SysV IPC" in perlipc and "IPC::SysV" documentation...
也试验了一下,感觉太慢.
有没有其他的办法呢?
用PIPE呢....透过PIPE传送数据...
谢谢,我去试一试.