我正在通过一些 scipy 讲座(http://scipy-lectures.github.io/intro/language/standard_library.html#pickle-easy-persistence),我遇到了关于 Pickle 的声明:
Useful to store arbitrary objects to a file. Not safe or fast!
他们这是什么意思?不安全(根据 Pickle 文档),因为不要 UnPickle 来自未知来源的文件,或者不安全,因为您并不总是检索原始对象?
什么是更安全和更快的替代方案?我知道 cPickle 更快,但我认为它不能解决上述更安全的定义。
谢谢。