Bad marshal data

Alex Martelli aleax at mail.comcast.net
Wed Dec 14 22:39:36 EST 2005


Michael McGarry <michael.mcgarry at gmail.com> wrote:

> Pickle is working well for me. I do not need speed or small file size.
> Flexibility is more important for me. If speed was important I would
> write the app in C.

Coding an app in C which writes very large text files would probably be
the wrong choice for speed if the app was I/O bound (as is likely when
the files get large enough, or get pushed through some narrow bandwidth
bottleneck, e.g. on a network filesystem): using Python and writing
small binary files instead might easily get better optimization with
less effort.


Alex



More information about the Python-list mailing list