redis數據結構

redis常用的數據結構: 1.string string 在redis中以sds (simple dynamic string)對象存在,數據結構: struct sdshdr{ //記錄buf數組中已使用字節的數量 //等於 SDS 保存字符串的長度 int len; //記錄 buf 數組中未使用字節的數量 int free; //字節數組,用於保存字符串 char buf[]; } 由於是
相關文章
相關標籤/搜索