- Notifications
You must be signed in to change notification settings - Fork590
File per Document and Folder per Table#503
-
We're looking at using TinyDB for use as the backend for a reference system, but we need this solution to be compatible via our source control solution. Ideally we'd have a file per record as well as a folder per table so that we can more easily manage checkout with source control. Is this possible with the current version of TinyDB? If not, is this something that we could easily modify/add ourselves. |
BetaWas this translation helpful?Give feedback.
All reactions
👍 1
Replies: 1 comment
-
Hey@JonLangfordUK, I think implementing a scheme like this should be possible by writing acustom storage class. Regarding source control: you'll need to keep in mind that TinyDB doesn't particularly like other systems modifying its data behind its back. Doing so might result in data loss or corruption, e.g. if you update the data while TinyDB tries to update it. |
BetaWas this translation helpful?Give feedback.