摘要: Redis数据结构 1 简单动态字符串 Simple dynamic string 的实现 // sds.h/sdshdr struct sdshdr { int len; //记录buf数组中已使用的字节数, 不包括结尾空字符'\0' int free; //记录buf数组中未使用的字节数 cha 阅读全文
posted @ 2022-06-26 21:59 ylyzty 阅读(19) 评论(0) 推荐(0) 编辑
摘要: Springboot启动注解 @SpringbootApplication 这个注解是Springboot最核心的注解,用在Springboot的主类上,标识这是一个Springboot应用,用来开启Springboot的各项能力。实际上这个注解 @SpringbootApplication = @ 阅读全文
posted @ 2022-06-26 21:23 ylyzty 阅读(95) 评论(0) 推荐(0) 编辑