Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 C 语言编写一个 Python 模块,我打算映射较大的内存块(可能是 500 MB)。在与 Python 解释器相同的进程空间中工作有什么需要注意的吗?
不,你很好。在 32 位系统上,您可能会用完虚拟内存,或者虚拟内存碎片没有一个足够大的块来映射您想要的尽可能多的大文件。但这个陷阱并不是 CPython 特有的。