Not sure if I did understood the question correctly: currently use a sqlite database as a backend for storing data, since it make easy to iterate and inspect while I'm developing, also sqlite seem to be able to handle blob just fine (up to 50MB).
I'm planning to have pluggable backends but the primary one will be a append-only log structure within a single file, however it should be relatively easy to add a git based backend. The reason for using a custom file format is that i want add support for a couple of feature to make it easier to recover data in case of corruption of both the data and the filesystem that host the file.
I'm planning to have pluggable backends but the primary one will be a append-only log structure within a single file, however it should be relatively easy to add a git based backend. The reason for using a custom file format is that i want add support for a couple of feature to make it easier to recover data in case of corruption of both the data and the filesystem that host the file.