第二章簡單動態字符串

1. SDS的定義 在Redis中的字符串並不是使用C語言中的char數組保存,而是自定義了一個結構體SDS來保存。 redis> SET msg "hello world" OK redis> RPUSH fruits "apple" "banana" "cherry" (integer) 3 在上述例子中,不管是key還是val都是使用SDS類型保存。 struct sdshdr {
相關文章
相關標籤/搜索