mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-19 18:15:50 +00:00
NodeStore improvements:
* Add Backend::verify API for doing consistency checks * Add Database::close so caller can catch exceptions * Improved Timing test for NodeStore creates a simulated workload
This commit is contained in:
committed by
Edward Hennis
parent
67b9cf9e82
commit
749e083e6e
@@ -42,6 +42,11 @@ public:
|
||||
return std::string ();
|
||||
}
|
||||
|
||||
void
|
||||
close() override
|
||||
{
|
||||
}
|
||||
|
||||
Status
|
||||
fetch (void const*, NodeObject::Ptr*)
|
||||
{
|
||||
@@ -70,7 +75,14 @@ public:
|
||||
}
|
||||
|
||||
void
|
||||
setDeletePath() override {}
|
||||
setDeletePath() override
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
verify() override
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user