| 2706 | std::vector<std::pair<robj_sharedptr, long long>> vecsubexpires; |
| 2707 | |
| 2708 | void addSubexpireKey(robj *subkey, long long when) { |
| 2709 | vecsubexpires.push_back(std::make_pair(robj_sharedptr(subkey), when)); |
| 2710 | decrRefCount(subkey); |
| 2711 | } |
| 2712 | |
| 2713 | rdbInsertJob() |
| 2714 | : JobBase(JobBase::JobType::Insert) |
no test coverage detected