diff options
author | Alex Auvolat <alex@adnab.me> | 2024-03-08 14:11:02 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-03-08 14:11:02 +0100 |
commit | 44454aac012cbef9158110f2352301ffcfaf31c7 (patch) | |
tree | 7e1ff7a536c999811e6c4bf25851434507f4d5f7 /doc/book/design | |
parent | 1ace34adbb05bb10cf7a2c8d0d2b84769ca797df (diff) | |
download | garage-44454aac012cbef9158110f2352301ffcfaf31c7.tar.gz garage-44454aac012cbef9158110f2352301ffcfaf31c7.zip |
[rm-sled] Remove the Sled database engine
Diffstat (limited to 'doc/book/design')
-rw-r--r-- | doc/book/design/internals.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/book/design/internals.md b/doc/book/design/internals.md index cefb7acc..8e3c214e 100644 --- a/doc/book/design/internals.md +++ b/doc/book/design/internals.md @@ -97,7 +97,7 @@ delete a tombstone, the following condition has to be met: superseeded by the tombstone. This ensures that deleting the tombstone is safe and that no deleted value will come back in the system. -Garage makes use of Sled's atomic operations (such as compare-and-swap and +Garage uses atomic database operations (such as compare-and-swap and transactions) to ensure that only tombstones that have been correctly propagated to other nodes are ever deleted from the local entry tree. |