exists 和 del exists key:判断一个key是否存在,存在返回1,否则返回0. del key:删除某个key,或是一系列key type 和 keys type key:返回某个key元素的数据类型(none不存在,string字符,list列表,set元组,zset有序集合,hash哈希) key key-pattern:返回匹配的key列表,key不存在返回空 randomkey 和 clear randomkey:随机获得一个已经存在的key,如果当前数据库为空,则返回…