Can Python class data be saved to S3 without marshalling? I am trying to开发者_运维技巧 cut down of I/O operations until necessary.
Amazon S3 stores plain data files. Even if there's a library that makes it look like objects are being saved, it's going to do marshalling in the background. Might as well just pickle your objects by yourself.
精彩评论