| 1378 | |
| 1379 | public: |
| 1380 | const redisDbPersistentDataSnapshot *createSnapshot(uint64_t mvccCheckpoint, bool fOptional) { |
| 1381 | auto psnapshot = redisDbPersistentData::createSnapshot(mvccCheckpoint, fOptional); |
| 1382 | if (psnapshot != nullptr) |
| 1383 | mvccLastSnapshot = psnapshot->mvccCheckpoint(); |
| 1384 | return psnapshot; |
| 1385 | } |
| 1386 | |
| 1387 | unsigned long expires_cursor = 0; |
| 1388 | dict *blocking_keys; /* Keys with clients waiting for data (BLPOP)*/ |
nothing calls this directly
no test coverage detected