| 2897 | } |
| 2898 | |
| 2899 | void redisDbPersistentData::storeKey(sds key, robj *o, bool fOverwrite) |
| 2900 | { |
| 2901 | sds temp = serializeStoredObjectAndExpire(o); |
| 2902 | m_spstorage->insert(key, temp, sdslen(temp), fOverwrite); |
| 2903 | sdsfree(temp); |
| 2904 | } |
| 2905 | |
| 2906 | void redisDbPersistentData::storeDatabase() |
| 2907 | { |
nothing calls this directly
no test coverage detected