摘要:
Redis 常用命令 切换数据库(默认用0) SELECT index 查看所有的key keys * string get set del hash HDEL key field1 field2 HEXISTS key field HGET key field HGETALL key HKEYS 阅读全文
摘要:
使用泛型与函数式接口定义类的转换工具类 函数式接口定义 @FunctionalInterface public interface MyListConverter<S,T> { T converter(S source); } 转换对象的定义 public class MyList<T> { pri 阅读全文