如何 mmap/load 内存中的文件 python 并从另一个进程访问它?
How to mmap/load a file in memory in python and acces to it from another process?
我知道在 C 中有一种方法可以使用 mmap 将文件加载到内存中并从另一个进程访问它们。
有没有办法对 python 做同样的事情?
C 的 malloc
function has no way to "load files". You probably mean mmap
代替。
Python 确实有 mmap 支持。请参阅 mmap - Memory-mapped file support 处的文档,其中还有一个示例。
我知道在 C 中有一种方法可以使用 mmap 将文件加载到内存中并从另一个进程访问它们。 有没有办法对 python 做同样的事情?
C 的 malloc
function has no way to "load files". You probably mean mmap
代替。
Python 确实有 mmap 支持。请参阅 mmap - Memory-mapped file support 处的文档,其中还有一个示例。