| 2595 | } |
| 2596 | |
| 2597 | void redisDbPersistentData::initialize() |
| 2598 | { |
| 2599 | m_pdbSnapshot = nullptr; |
| 2600 | m_pdict = dictCreate(&dbDictType,this); |
| 2601 | m_pdictTombstone = dictCreate(&dbTombstoneDictType,this); |
| 2602 | m_fAllChanged = 0; |
| 2603 | m_fTrackingChanges = 0; |
| 2604 | } |
| 2605 | |
| 2606 | void redisDbPersistentData::setStorageProvider(StorageCache *pstorage) |
| 2607 | { |
no test coverage detected