Skip to content

Commit c80075a

Browse files
authoredSep 14, 2023
added hmset to ioMethods.ts (#58)
* added hmset to ioMethods.ts * Revert "added hmset to ioMethods.ts" This reverts commit 71bebfe. * fix(iomethods.ts added hmset): added hmset in iomethods.ts
1 parent c6a30f6 commit c80075a

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
 

‎src/ioMethods.ts

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ export const ioMethods = [
8787
'hget',
8888
'hgetBuffer',
8989
'hmget',
90+
'hmset',
9091
'hincrby',
9192
'hincrbyfloat',
9293
'hdel',

‎test/redis.spec.ts

+28
Original file line numberDiff line numberDiff line change
@@ -308,4 +308,32 @@ test.group('Redis Manager', () => {
308308

309309
await redis.quit('primary')
310310
})
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+
})
311339
})

0 commit comments

Comments
 (0)
Please sign in to comment.