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.
我想在 sec 中向 mysql 服务器插入大约 80k 行。目前我使用常规插入。
我想尝试使用 LOAD DATA 但我想从内存(RAM)加载数据。而不是从文件中,我必须写入文件并从 mysqld 加载它。
有什么办法吗?目前我的系统在 windows7 上运行
赫茨尔
您需要一个文件,但由于内容在内存中,您可以创建一个ram 磁盘并将文件写入那里,它会非常快
另一种解决方案是使用内存映射文件,这样您就可以将数据保存在内存中,但也可以将其保存在磁盘上(操作系统保证这一点)。