This commit is contained in:
Badrish Chandramouli 2019-01-14 11:21:46 -08:00 коммит произвёл GitHub
Родитель 3d43f65e59
Коммит 706542a9ab
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -46,7 +46,7 @@ write-ahead log (WAL) which can kill FASTER's high performance, CPR: (1) provide
operations, of the form “all operations until offset Ti in session i”; and (2) uses asynchronous
incremental checkpointing instead of a WAL to implement group commit in a scalable bottleneck-free manner.
CPR in available in the C# and C++ versions of FASTER. More documentation on recovery in the C# version is
CPR is available in the C# and C++ versions of FASTER. More documentation on recovery in the C# version is
[here](https://github.com/Microsoft/FASTER/tree/master/cs#checkpointing-and-recovery). For C++, we only
have examples in code right now. The sum-store, located [here](https://github.com/Microsoft/FASTER/tree/master/cc/playground/sum_store-dir), is a good example of checkpointing and recovery.