Tagged Questions
3
votes
4answers
2k views
more efficient way to pickle a string
The pickle module seems to use string escape characters when pickling; this becomes inefficient e.g. on numpy arrays. Consider the following
z = numpy.zeros(1000, numpy.uint8)
len(z.dumps())
...