I am ready for a new level of LevelDB. I need something like "rollback to a certain state", does LevelDB support this? After some searching, I know that LevelDB does not support transactions, but supports snapshots. Can I restore my database in a snapshot?
My need is this:
- Initial state
- Make some changes to the database
- If something is wrong, return to its original state.
source
share