-- Robin Becker -- https://mail.python.org/mailman/listinfo/python-list
for what it's worth I believe that marshal is a faster method for storing simple
python objects. So if your information can be stored using simple python things
eg strings, floats, integers, lists and dicts then storage using marshal is
faster than pickle/cpickle. If you want to persist the objects for years then
the pickle protocol is probably better as it is not python version dependant.
- Pickle based workflow - looking for advice Fabien
- Re: Pickle based workflow - looking for advice Devin Jeanpierre
- Re: Pickle based workflow - looking for advice Robin Becker
- Re: Pickle based workflow - looking for advice Dave Angel
- Re: Pickle based workflow - looking for advice Peter Otten
- Re: Pickle based workflow - looking for advice Fabien
- Re: Pickle based workflow - looking for advice Fabien
- Re: Pickle based workflow - looking for advice Fabien
- Re: Pickle based workflow - looking for advice Chris Angelico
- Re: Pickle based workflow - looking for advice Fabien
- Re: Pickle based workflow - looking for advi... Steven D'Aprano
- Re: Pickle based workflow - looking for ... Chris Angelico
- Re: Pickle based workflow - looking for ... Steven D'Aprano