是否可以直接将数据从 Numpy 数组复制到 MonetDB?

Is it possible to directly copy data from Numpy array to MonetDB?

因为 Numpy 数组映射到 C 数组并且 MonetDB 使用 C 数组作为其 storage model, is it possible to load data from in-memory Numpy arrays into MonetDB? This would save a round-trip to disk, i.e. writing the data from the Numpy array to disk and bulk loading it from disk into MonetDB. I'm aware of embedded Python in MonetDB 但我宁愿在 Python.

中嵌入 MonetDB

Python 实现的官方 MonetDBLite 支持这一点。请参阅插入数据的示例。 https://www.monetdb.org/blog/monetdblite-for-python