| 2094 | } |
| 2095 | }; |
| 2096 | IKeyValueStore* 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 | |
| 2104 | ACTOR Future<Void> cleanPeriodically(KeyValueStoreSQLite* self) { |
| 2105 | wait(delayJittered(SERVER_KNOBS->SPRING_CLEANING_NO_ACTION_INTERVAL)); |
no outgoing calls