Sending binary pickled data through TCP

Fredrik Lundh fredrik at pythonware.com
Fri Oct 13 14:02:06 EDT 2006


David Hirschfield wrote:

> Are there any existing python modules that do the equivalent of pickling 
> on arbitrary python data, but do it a lot faster? I wasn't aware of any 
> that are as easy to use as pickle, or don't require implementing them 
> myself, which is not something I have time for.

cPickle is faster than pickle.  marshal is faster than cPickle, but only 
supports certain code object types.

</F>




More information about the Python-list mailing list