Redis里面使用sdshdr结构体来保存字符串,结构体结构如下:struct sdshdr{     int len;//已使用保存的字符串长度     int free;//未使用字符串长度 ...