标签: json python-3.x io
我有一个非常大的字典(序列化约为5 GB)。我想听写并使用json.dump。这样可以正常工作:
json.dump
with open(temp_file, 'w') as writer: json.dump(self.value, writer, default=_date_handler)
我试图找出是否可以增加json.dump使用的块大小,因为写入磁盘的速度可能很慢。
谢谢