dt-common-device 7.2.5 → 7.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -182,6 +182,12 @@ let RedisUtils = (() => {
|
|
|
182
182
|
throw error;
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
|
+
async sadd(key, member) {
|
|
186
|
+
return await this.client.sadd(key, member);
|
|
187
|
+
}
|
|
188
|
+
async smembers(key) {
|
|
189
|
+
return await this.client.smembers(key);
|
|
190
|
+
}
|
|
185
191
|
};
|
|
186
192
|
__setFunctionName(_classThis, "RedisUtils");
|
|
187
193
|
(() => {
|