This is useful in perf testing and benchmarking as it allows,
through comparison with `CyanStore`, to judge to pentalty of
`AlienStore`.
Signed-off-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
#ifndef WITH_SEASTAR
#include "filestore/FileStore.h"
-#include "memstore/MemStore.h"
#endif
+#include "memstore/MemStore.h"
#if defined(WITH_BLUESTORE)
#include "bluestore/BlueStore.h"
#endif
const string& type,
const string& data)
{
-#ifndef WITH_SEASTAR
if (type == "memstore") {
return std::make_unique<MemStore>(cct, data);
}
-#endif
#if defined(WITH_BLUESTORE)
if (type == "bluestore" || type == "random") {
return std::make_unique<BlueStore>(cct, data);