📜  在 adonis 中使用 redis - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:06.091000             🧑  作者: Mango

代码示例3
const Redis = use('Redis')

const user = {
  username: 'foo',
  email: 'foo@bar.com'
}

// set user
await Redis.hmset('users', user.username, JSON.stringify(user))

// get user
const user = await Redis.hmget('users', user.username)