删除值(哈希)
hdel()
删除存储在给定键中的值,需要传入一个键名。RDb()
可以传入一个数据源的名称,默认是第一个数据源
- @param
index
索引 - @param
key
键 - (index: string, key: string)
hdel()
import { RDb } from 'think-ts-db'
export default defineEventHandler(async (event) => {
RDb(redisConfig).hdel('coupons', 'coupons_1')
return true
})
import { RDb } from 'think-ts-db'
export default defineEventHandler(async (event) => {
RDb(redisConfig).hdel('coupons', 'coupons_1')
return true
})