fix(server): Added RDB load / save for DenseSet (#297)

Signed-off-by: Braydn <braydn.moore@uwaterloo.ca>
This commit is contained in:
Braydn 2022-09-14 13:09:32 -04:00 committed by GitHub
parent 231ef3d367
commit 7cc761134b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 52 additions and 17 deletions

View file

@ -30,7 +30,6 @@ using absl::StrCat;
ABSL_DECLARE_FLAG(int32, list_compress_depth);
ABSL_DECLARE_FLAG(int32, list_max_listpack_size);
ABSL_DECLARE_FLAG(bool, use_set2);
namespace dfly {
@ -38,11 +37,6 @@ class RdbTest : public BaseFamilyTest {
protected:
protected:
io::FileSource GetSource(string name);
// disable usage of DenseSet until the RDB patches are added
RdbTest() : BaseFamilyTest() {
SetFlag(&FLAGS_use_set2, false);
}
};
inline const uint8_t* to_byte(const void* s) {