简体   繁体   中英

How to mmap/load a file in memory in python and acces to it from another process?

I know that in C there is a way to load files in memory with mmap and access them from another process. Is there a way to do the same with python?

C's malloc function has no way to "load files". You probably mean mmap instead.

Python does have mmap support. See the documentation at mmap - Memory-mapped file support where there's an example as well.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM