Implement new experimental cassandra backend (#537)

This commit is contained in:
Alex Kremer
2023-03-29 19:38:38 +01:00
committed by GitHub
parent e9937fab76
commit d86104577b
48 changed files with 7996 additions and 51 deletions

View File

@@ -33,9 +33,12 @@ namespace Backend {
bool
BackendInterface::finishWrites(std::uint32_t const ledgerSequence)
{
gLog.debug() << "Want finish writes for " << ledgerSequence;
auto commitRes = doFinishWrites();
if (commitRes)
{
gLog.debug() << "Successfully commited. Updating range now to "
<< ledgerSequence;
updateRange(ledgerSequence);
}
return commitRes;