什么时候应该使用内存视图?
Memoryview 的完整描述可以在此处找到:
创建一个引用obj的
内存视图
。 obj 必须支持缓冲区协议。支持缓冲区协议的内置对象包括bytes
和bytearray
。
内存视图
具有元素的概念,它是由原始对象obj处理的原子内存单元。对于许多简单类型(例如bytes
和bytearray
),元素是单个字节,但其他类型(例如array.array
)可能具有更大的元素.
The full description of memoryview can be found here:
Create a
memoryview
that references obj. obj must support the buffer protocol. Built-in objects that support the buffer protocol includebytes
andbytearray
.A
memoryview
has the notion of an element, which is the atomic memory unit handled by the originating object obj. For many simple types such asbytes
andbytearray
, an element is a single byte, but other types such asarray.array
may have bigger elements.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
内存视图本质上是 Python 本身的通用 NumPy 数组结构(没有数学)。它允许您在数据结构(例如 PIL 图像、SQLlite 数据库、NumPy 数组等)之间共享内存,而无需先进行复制。这对于大型数据集非常重要。
有了它,你可以做一些事情,比如内存映射到一个非常大的文件,切片该文件的一部分并对该部分进行计算(如果你使用 NumPy,则最简单)。
A memoryview is essentially a generalized NumPy array structure in Python itself (without the math). It allows you to share memory between data-structures (things like PIL images, SQLlite data-bases, NumPy arrays, etc.) without first copying. This is very important for large data sets.
With it you can do things like memory-map to a very large file, slice a piece of that file and do calculations on that piece (easiest if you are using NumPy).
从文档中,我认为它用于“访问支持缓冲区协议的对象的内部数据而不进行复制”,因此您可以使用大量数据进行操作,而不会填满内存。我不知道你是否想要例子,但不幸的是我想不出任何例子。
From the documentation, I figure it's used to "access the internal data of an object that supports the buffer protocol without copying", so you can do things with huge chunks of data without filling up your memory. I don't know if you want examples, but I can't think of any, unfortunately.