java面试(30)- redis

发布时间 2023-06-07 16:44:25作者: 刘大飞

1: Redis支持的数据类型

  a) 字符串 key val
  b) hash key name filed
  c) list key v1 v2 v3 v3
  d) set key v1 v2 v3
  d) zset key s v

2: Redis支持的事务

  

3: 为什么redis快

 

4: redis的优缺点

1、优点
    a)数据类型丰富
    b)支持数据的事务提交
    c)支持主从复制
    d)支持读写分离
    e)支持事务提交
2、缺点
    a)Redis宕机后没有容错机制

5: redis的优缺点