摘要: python的pickle模块实现了基本的数据序列和反序列化。通过pickle模块的序列化操作我们能够将程序中运行的对象信息保存到文件中去,永久存储;通过pickle模块的反序列化操作,我们能够从文件中创建上一次程序保存的对象。 基本接口: pickle.dump(obj, file, [,prot 阅读全文
posted @ 2017-04-07 19:57 Django's blog 阅读(955) 评论(0) 推荐(0) 编辑
摘要: import pickle, json, csv, os, shutil class PersistentDict(dict): ''' Persistent dictionary with an API compatible with shelve and anydbm. The dict is 阅读全文
posted @ 2017-04-07 19:01 Django's blog 阅读(357) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/zhaoweikid/article/details/1665741 bsddb模块是用来操作bdb的模块,bdb是著名的Berkeley DB,它的性能非常好,mysql的存储后端引擎都支持bdb的方式。这里简单介绍一些关于bsddb的使用方法。 bdb不 阅读全文
posted @ 2017-04-07 18:20 Django's blog 阅读(817) 评论(0) 推荐(0) 编辑