What kind of database/filetype is the db.zo file? #366
-
I have never seen a file like that so it got me wondering. Might be useful for me in the future. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
It's a binary format. There's a 4-byte header that gives you the database version (currently version 3) followed by the serialized list of directories (path, rank, and timestamp). The code for it is here, and the format used for serialization is called bincode. |
Beta Was this translation helpful? Give feedback.
-
Hello, I would like to know how to deserialize this data file in another language such as python or nodejs |
Beta Was this translation helpful? Give feedback.
It's a binary format. There's a 4-byte header that gives you the database version (currently version 3) followed by the serialized list of directories (path, rank, and timestamp). The code for it is here, and the format used for serialization is called bincode.