File tree 2 files changed +29
-0
lines changed
2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ export const ioMethods = [
87
87
'hget' ,
88
88
'hgetBuffer' ,
89
89
'hmget' ,
90
+ 'hmset' ,
90
91
'hincrby' ,
91
92
'hincrbyfloat' ,
92
93
'hdel' ,
Original file line number Diff line number Diff line change @@ -308,4 +308,32 @@ test.group('Redis Manager', () => {
308
308
309
309
await redis . quit ( 'primary' )
310
310
} )
311
+
312
+ test ( 'hmset and hmget' , async ( { assert } ) => {
313
+ const app = new Application ( __dirname , 'web' , { } )
314
+ const redis = new RedisManager (
315
+ app ,
316
+ {
317
+ connection : 'primary' ,
318
+ connections : {
319
+ primary : {
320
+ host : process . env . REDIS_HOST ,
321
+ port : Number ( process . env . REDIS_PORT ) ,
322
+ } ,
323
+ cluster : {
324
+ clusters : clusterNodes ,
325
+ } ,
326
+ } ,
327
+ } ,
328
+ new Emitter ( app )
329
+ ) as unknown as RedisManagerContract
330
+
331
+ await redis . hmset ( 'greeting' , { hello : 'world' } )
332
+ const greeting = await redis . hmget ( 'greeting' , 'hello' )
333
+
334
+ assert . equal ( greeting , 'world' )
335
+
336
+ await redis . del ( 'greeting' )
337
+ await redis . quit ( 'primary' )
338
+ } )
311
339
} )
You can’t perform that action at this time.
0 commit comments