What specific scenarios can this database be used in? #569
Replies: 4 comments
-
Scenarios without high performance and advanced features are feasible, as stated in the Why Not Use TinyDB? docs. |
Beta Was this translation helpful? Give feedback.
-
My team and I needed a way to update a database in a Git repository and trigger actions based on the DB updates. TinyDB works for that. It it similar to SQLite, but the DB updates are nicely human-readable with |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
I'd say TinyDB works best in situations where you have a small dataset that isn't big/complex enough to warrant using Sqlite and not worth the trouble of implementing or including some sort of schema migration mechanism. At least that's how TinyDB got started in the first place 🙂 |
Beta Was this translation helpful? Give feedback.
-
I took a look at the implementation, which uses full updates for writing and does not employ sequential file storage or ensure thread safety. It seems suitable only for educational purposes. I would like to know what production scenarios could utilize it.
Beta Was this translation helpful? Give feedback.
All reactions