MCPcopy Create free account
hub / github.com/apple/foundationdb / keyValueStoreSQLite

Function keyValueStoreSQLite

fdbserver/KeyValueStoreSQLite.actor.cpp:2096–2102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2094 }
2095};
2096IKeyValueStore* keyValueStoreSQLite(std::string const& filename,
2097 UID logID,
2098 KeyValueStoreType storeType,
2099 bool checkChecksums,
2100 bool checkIntegrity) {
2101 return new KeyValueStoreSQLite(filename, logID, storeType, checkChecksums, checkIntegrity);
2102}
2103
2104ACTOR Future<Void> cleanPeriodically(KeyValueStoreSQLite* self) {
2105 wait(delayJittered(SERVER_KNOBS->SPRING_CLEANING_NO_ACTION_INTERVAL));

Callers 4

Future<Void> KVFileCheckFunction · 0.85
Future<Void> KVFileDumpFunction · 0.85
Future<Void> testKVStoreFunction · 0.85
openKVStoreFunction · 0.85

Calls

no outgoing calls

Tested by 1

Future<Void> testKVStoreFunction · 0.68