christopher-caldwell / red-five

Browser based Redis dashboard that aims to be easy on the eyes, and easy to use
0 stars 0 forks source link

Support more key types in Key view #6

Open christopher-caldwell opened 3 years ago

christopher-caldwell commented 3 years ago

Currently, only get is supported. End goal is to support the other 4

// Redis command for each
const keys = {
  hash: 'hgetall',
  lists: 'lrange',
  sets: 'smembers',
  zset: 'zrangebyscore'
}