views:

40

answers:

1

Can Python class data be saved to S3 without marshalling? I am trying to cut down of I/O operations until necessary.

+1  A: 

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.

Max Shawabkeh