- Notifications
You must be signed in to change notification settings - Fork 25
Closed
Labels
Description
Some notes:
- Would be ideal if it is extensible to other 'raw' data (like images).
- Using more than one save file would be a disadvantage as it's easy to lose parts.
- Mixing formats in the same file (e.g. json followed by raw binary) might be difficult for humans and other implementations to read.
- Base64 encoding loses efficiency (33% and not great for zipping) - or base85, which may be worse.
- Using a python specific format (like .npz) would be disadvantage.
- Reading and writing efficiency is important (reading is already really slow).
I can't think of a way that satisfies all these preferences, so I'll leave it open for now.
erwanp