6
\$\begingroup\$

Is there a way in Python 2.7 to improve reading/writing speed (or memory consumption of the file) compared to this version?

import gzip
import cPickle
import io
# save zipped and pickled file
def save_zipped_pickle(obj, filename):
 # disable garbage collector (hack for faster reading/writing)
 gc.disable()
 with gzip.open(filename, 'wb') as f:
 cPickle.dump(obj, io.BufferedWriter(f), -1)
 # enable garbage collector again
 gc.enable()
# load zipped and pickled file
def load_zipped_pickle(filename):
 # disable garbage collector (hack for faster reading/writing)
 gc.disable()
 with gzip.open(filename, 'rb') as f:
 loaded_object = cPickle.load(io.BufferedReader(f))
 # enable garbage collector again
 gc.enable()
 return loaded_object
200_success
145k22 gold badges190 silver badges478 bronze badges
asked Nov 6, 2017 at 0:02
\$\endgroup\$

1 Answer 1

4
\$\begingroup\$

This looks really efficient and potentially the best you can do, but here are some thoughts:

FYI, the gc.disable/gc.enable() pair is planned to be implemented as a context manager in Python 3.7. You can borrow a Python sample from the issue tracker:

@contextmanager
def gc_disabled():
 if gc.isenabled():
 gc.disable()
 yield
 gc.enable()
 else:
 yield
answered Nov 6, 2017 at 22:32
\$\endgroup\$

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.