-
For example, if I have a 20 megabyte database and I regularly update a couple of records, are the full 20 megabytes always rewritten to the disk or only the few bytes or kilobytes which were actually changed? Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
anidotnet
Dec 14, 2020
Replies: 0 comments 8 replies
-
If auto-commit is on, nitrite will periodically persists data to the disk. If the auto-commit is disabled, the data will persists when you call commit method or at the time of closing the database. |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
neroux
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If auto-commit is on, nitrite will periodically persists data to the disk. If the auto-commit is disabled, the data will persists when you call commit method or at the time of closing the database.