压缩列表ziplist

news2025/1/26 15:42:32

目录

1压缩列表的结构

2.压缩列表节点的构成

previous_entry_length

encodeing

conent

3.压缩列表API

1.创建列表 ziplistNew

2.正向遍历 ziplistNext

3.反向遍历 ziplistPrev

4.插入元素 ziplistInsert

5.级联更新 __ziplistCascadeUpdate

6.删除节点

7.查找entry ziplistFind

4.连锁更新问题

5.引出结构 listpack

listpack的结构和节点结构

listpack是如何实现从尾部到头部遍历?


ziplist和普通的双向链表不同 ,ziplist不存储指向上一个链表节点和指向下一个链表节点的指针,而是存储上一个节点长度和当前节点长度,通过牺牲部分读写性能,来换取高效的内存空间利用率,节约内存,是一种时间换空间的思想。ziplist使用连续内存地址+偏移量的方式实现链表。

其只用在字段个数少,字段值小的场景里面;适合存储一些int类型的数据或者长度比较短的字符串。

1压缩列表的结构

压缩列表是 Redis 为节约空间而实现的一系列特殊编码的连续内存块组成的顺序型数据结构, 本质上是字节数组。在模型上将这些连续的数组分为3大部分,分别是header+entry集合+end。

这个结构,redis没有弄成是一个结构体,在看源代码的时候是找不到这个结构的。是可以通过创建压缩列表函数ziplistNew看出压缩列表的结构组成。

  • zlbytes:整个压缩列表所占用的字节数,该字段是4个字节大小,因此压缩列表最多有2^32-1个字节。
  • zltail:ziplist头部到末尾元素的长度,通过zltail字段可以很方便获取末尾元素的地址。该字段是4个字节大小。
  • zllen:压缩列表的元素个数,该字段是2字节大小。zllen无法存储元素个数超过65535(2^16-1)的压缩列表,必须遍历整个压缩列表才能获取到元素个数。
  • entry:压缩列表存储的元素,可以是字节数组或者整数,长度不限。entry的编码结构将在后面详细介绍。
  • zlend:压缩列表的结尾,占1个字节,恒为0xFF。 

Redis并没有像之前的字符串SDS,字典等结构那样封装一个结构体来保存压缩列表的信息。那是要怎样去对该数据进行操作呢。

Redis是通过定义一系列宏定义来对数据进行操作。其通过字节之间的定位和计算来获取数据的。

//返回整个压缩列表的总字节
#define ZIPLIST_BYTES(zl)       (*((uint32_t*)(zl)))
//返回压缩列表的tail_offset变量,方便获取最后一个节点的位置
#define ZIPLIST_TAIL_OFFSET(zl) (*((uint32_t*)((zl)+sizeof(uint32_t))))
//返回压缩列表的节点数量
#define ZIPLIST_LENGTH(zl)      (*((uint16_t*)((zl)+sizeof(uint32_t)*2)))
//返回压缩列表的表头的字节数
//(内存字节数zlbytes,最后一个节点地址ztail_offset,节点总数量zllength)
#define ZIPLIST_HEADER_SIZE     (sizeof(uint32_t)*2+sizeof(uint16_t))
//返回压缩列表最后结尾的字节数
#define ZIPLIST_END_SIZE        (sizeof(uint8_t))
//返回压缩列表首节点地址
#define ZIPLIST_ENTRY_HEAD(zl)  ((zl)+ZIPLIST_HEADER_SIZE)
//返回压缩列表尾节点地址
#define ZIPLIST_ENTRY_TAIL(zl)  ((zl)+intrev32ifbe(ZIPLIST_TAIL_OFFSET(zl)))
//返回压缩列表最后结尾的地址
#define ZIPLIST_ENTRY_END(zl)   ((zl)+intrev32ifbe(ZIPLIST_BYTES(zl))-1)

2.压缩列表节点的构成

 很多人看代码找到的应该是zlentry。但是其代码的注释Note that this is not how the data is actually encoded。

/* We use this function to receive information about a ziplist entry.
 * Note that this is not how the data is actually encoded, is just what we
 * get filled by a function in order to operate more easily. */
//翻译:我们使用此函数来接收有关压缩列表条目的信息。
//请注意,这并不是数据的实际编码方式,只是我们通过函数填充的内容,以便更容易地操作
typedef struct zlentry {
    unsigned int prevrawlensize; //记录prevrawlen需要的字节数
    unsigned int prevrawlen;    //记录上个节点的长度
    unsigned int lensize;        //编码格式需要的字节数
    unsigned int len;           //记录节点的元素的长度,是节点元素的长度,不是节点长度
    unsigned int headersize;   //prevrawlensize+lensize 
    unsigned char encoding;   //编码格式,在该结构体中就是用来简单区分是字符数组还是整数类型的
    unsigned char *p;       //具体的数据指针
} zlentry;

对于该结构体,我们需要注意三个字段,prevrawlensizelensizeheadersize。源码中会经常使用到这三个字段。

而这个结构存储实在是太浪费空间了,这不符合压缩列表的设计目的。Redis对上述结构进行了改进了,抽象合并了三个参数。这三个参数整体被称为entry.

压缩列表的结点可以保存一个字符数组或者整数值。这说明每个节点之间的保存的数据类型是可以不同的。

结构体zlentry中的字段与entry中的对应关系:

  • 记录previous_entry_length所需用的字节数就是prevrawlensize,
  • 记录encoding所需用的字节数就是lensize。
  • headersize=prevrawlensize+lensize。所以在entry地址首部+headersize,就是可以访问到content。
  • 字段len就是content部分的长度。entry地址首部+headersize+len,就可以访问到下一节点的首地址了。

previous_entry_length

该属性记录了压缩列表前一个节点的长度(不是该元素的长度),占1个字节或者5个字节

  • 如果前一个节点的长度小于254个字节,那么使用1个字节来保存这个长度值,即前一个节点的长度可以使用1个字节表示。
  • 如果前一个节点的长度大于等于254个字节,那么使用5个字节来保存这个长度值,第一个字节会被设置为0xFE(十进制的254),之后的四个字节则用于保存前一个节点的长度。

例子:大于等于254字节时的表示

注意: ZipList中所有存储长度的数值均是采用小端字节序,即是低位字节在低地址,高位字节在高地址。如上图所示。这样也方便Redis获取长度,因为访问到字段previous_entry_length时候,内存是从低地址开始向高地址的。

 previous_entry_length中关联的源码

#define ZIP_BIG_PREVLEN 254 

int zipStorePrevEntryLengthLarge(unsigned char *p, unsigned int len) {
    if (p != NULL) {
        p[0] = ZIP_BIG_PREVLEN;         //第一个字节固定存放254
        memcpy(p+1,&len,sizeof(len));   //上一个节点的长度存放在后四个字节
        memrev32ifbe(p+1);
    }
    return 1+sizeof(len);   //sizeof(len)的值为4
}

//对prevrawlen进行编码 或者直接返回编码len长度所需要的字节数 
unsigned int zipStorePrevEntryLength(unsigned char *p, unsigned int len) {
    if (p == NULL) {
        return (len < ZIP_BIG_PREVLEN) ? 1 : sizeof(len)+1;
    } else {
        if (len < ZIP_BIG_PREVLEN) {    //上一个节点的长度小于254
            p[0] = len;                 //preventrylength域只占一个字节
            return 1;
        } else {
            return zipStorePrevEntryLengthLarge(p,len);
        }
    }
}

/* Return the number of bytes used to encode the length of the previous
 * entry. The length is returned by setting the var 'prevlensize'. */
#define ZIP_DECODE_PREVLENSIZE(ptr, prevlensize) do {                          \
    if ((ptr)[0] < ZIP_BIG_PREVLEN) {                                          \
        (prevlensize) = 1;                                                     \
    } else {                                                                   \
        (prevlensize) = 5;                                                     \
    }                                                                          \
} while(0);

由于压缩列表中的数据以一种不规则的方式进行紧邻,无法通过后退指针来找到上一个元素,而通过保存上一个节点的长度,用当前的地址减去这个长度,就可以很容易的获取到了上一个节点的位置,通过一个一个节点向前回溯,来达到从表尾往表头遍历的操作。

举个例子:有一个指向当前结点起始地址的指针c,那只要用指针c减去当前结点previous_entry_length属性的值,就可以得到一个指向前一个节点起始地址的指针p。

encodeing

节点的encoding记录了节点的content属性所保存数据的类型长度

  • 1字节、2字节或者5字节长, 值的最高位为 00 、 01 或者 10 的是字符数组编码: 数组的长度由编码除去最高两位之后的其他位记录;
  • 1字节长, 值的最高位以 11 开头的是整数编码: 整数值的类型和长度由编码除去最高两位之后的其他位记录;

如果 content 存放的数据是字符数组类型,关联encoding的源码如下:

/* Different encoding/length possibilities */
#define ZIP_STR_MASK 0xc0       /* 1100 0000 */
#define ZIP_INT_MASK 0x30       /* 0011 0000 */
#define ZIP_STR_06B (0 << 6)    /* 00 开头 */
#define ZIP_STR_14B (1 << 6)    /* 01 开头 */
#define ZIP_STR_32B (2 << 6)    /* 10 开头 */

/* Macro to determine if the entry is a string. String entries never start
 * with "11" as most significant bits of the first byte. */
#define ZIP_IS_STR(enc) (((enc) & ZIP_STR_MASK) < ZIP_STR_MASK) /* 不以 11 开头就是字符数组 */

unsigned int zipStoreEntryEncoding(unsigned char *p, unsigned char encoding, unsigned int rawlen) {
    //len字段表示 encoding 域所占字节,len先初始化1个字节
    unsigned char len = 1, buf[5];

    if (ZIP_IS_STR(encoding)) {
        /* Although encoding is given it may not be set for strings,
         * so we determine it here using the raw length. */
        if (rawlen <= 0x3f) {    //0x3f的二进制是0b0011 1111
            if (!p) return len;
            buf[0] = ZIP_STR_06B | rawlen;
        } else if (rawlen <= 0x3fff) {
            len += 1;   //占2个字节
            if (!p) return len;
            buf[0] = ZIP_STR_14B | ((rawlen >> 8) & 0x3f);  //第一个字节的头两位固定为01
            buf[1] = rawlen & 0xff;
        } else {
            len += 4;   //占5个字节
            if (!p) return len;
            buf[0] = ZIP_STR_32B;   //第一个字节的值固定为 1000 0000
            buf[1] = (rawlen >> 24) & 0xff;
            buf[2] = (rawlen >> 16) & 0xff;
            buf[3] = (rawlen >> 8) & 0xff;
            buf[4] = rawlen & 0xff;
        }
    } else {
        /* Implies integer encoding, so length is always 1. */
        if (!p) return len;
        buf[0] = encoding;  //如果是整型,只占用1个字节
    }

    /* Store this length at p. */
    memcpy(p,buf,len);
    return len;
}

如果 content 存放的数据是整数,关联encoding的源码如下:

/* Different encoding/length possibilities */
#define ZIP_INT_16B (0xc0 | 0<<4)   /* 1100 0000 */
#define ZIP_INT_32B (0xc0 | 1<<4)   /* 1101 0000 */
#define ZIP_INT_64B (0xc0 | 2<<4)   /* 1110 0000 */
#define ZIP_INT_24B (0xc0 | 3<<4)   /* 1111 0000 */
#define ZIP_INT_8B 0xfe             /* 1111 1110 */

/* 4 bit integer immediate encoding |1111xxxx| with xxxx between
 * 0001 and 1101. */
#define ZIP_INT_IMM_MASK 0x0f   /* Mask to extract the 4 bits value. To add
                                   one is needed to reconstruct the value. */
#define ZIP_INT_IMM_MIN 0xf1    /* 11110001 */
#define ZIP_INT_IMM_MAX 0xfd    /* 11111101 */

/* Store integer 'value' at 'p', encoded as 'encoding' */
//根据encoding把value保存在p内,(传递进来的p是entry地址首部+headersize,即是content部分)
void zipSaveInteger(unsigned char *p, int64_t value, unsigned char encoding) {
    int16_t i16;
    int32_t i32;
    int64_t i64;
    if (encoding == ZIP_INT_8B) {
        ((int8_t*)p)[0] = (int8_t)value;
    } else if (encoding == ZIP_INT_16B) {
        i16 = value;
        memcpy(p,&i16,sizeof(i16));
        memrev16ifbe(p);
    } else if (encoding == ZIP_INT_24B) {
        i32 = value<<8;
        memrev32ifbe(&i32);
        memcpy(p,((uint8_t*)&i32)+1,sizeof(i32)-sizeof(uint8_t));
    } else if (encoding == ZIP_INT_32B) {
        i32 = value;
        memcpy(p,&i32,sizeof(i32));
        memrev32ifbe(p);
    } else if (encoding == ZIP_INT_64B) {
        i64 = value;
        memcpy(p,&i64,sizeof(i64));
        memrev64ifbe(p);
    } else if (encoding >= ZIP_INT_IMM_MIN && encoding <= ZIP_INT_IMM_MAX) {
        /* Nothing to do, the value is stored in the encoding itself. */
    } else {
        assert(NULL);
    }
}

/* Read integer encoded as 'encoding' from 'p' */
//根据encoding从p内读取数值,(传递进来的p是entry地址首部+headersize,即是content部分)
int64_t zipLoadInteger(unsigned char *p, unsigned char encoding) {
    int16_t i16;
    int32_t i32;
    int64_t i64, ret = 0;
    if (encoding == ZIP_INT_8B) {
        ret = ((int8_t*)p)[0];
    } else if (encoding == ZIP_INT_16B) {
        memcpy(&i16,p,sizeof(i16));
        memrev16ifbe(&i16);
        ret = i16;
    } else if (encoding == ZIP_INT_32B) {
        memcpy(&i32,p,sizeof(i32));
        memrev32ifbe(&i32);
        ret = i32;
    } else if (encoding == ZIP_INT_24B) {
        i32 = 0;
        memcpy(((uint8_t*)&i32)+1,p,sizeof(i32)-sizeof(uint8_t));
        memrev32ifbe(&i32);
        ret = i32>>8;
    } else if (encoding == ZIP_INT_64B) {
        memcpy(&i64,p,sizeof(i64));
        memrev64ifbe(&i64);
        ret = i64;
    } else if (encoding >= ZIP_INT_IMM_MIN && encoding <= ZIP_INT_IMM_MAX) {
        ret = (encoding & ZIP_INT_IMM_MASK)-1;  //这里减了1,所以4bit整数的值是从0到12
    } else {
        assert(NULL);
    }
    return ret;
}

 获取记录encoding所需的字节数节点的元素长度对应的源码如下:

//使用例子
static inline void zipEntry(unsigned char *p, zlentry *e) {
    //................................
    //p中的字段对应赋值给e中的字段
    ZIP_DECODE_LENGTH(p + e->prevrawlensize, e->encoding, e->lensize, e->len);
}

#define ZIP_DECODE_LENGTH(ptr, encoding, lensize, len) do {                    \
    if ((encoding) < ZIP_STR_MASK) {                                           \
        if ((encoding) == ZIP_STR_06B) {                                       \
            (lensize) = 1;                                                     \
            (len) = (ptr)[0] & 0x3f;                                           \
        } else if ((encoding) == ZIP_STR_14B) {                                \
            (lensize) = 2;                                                     \
            (len) = (((ptr)[0] & 0x3f) << 8) | (ptr)[1];                       \
        } else if ((encoding) == ZIP_STR_32B) {                                \
            (lensize) = 5;                                                     \
            (len) = ((ptr)[1] << 24) |                                         \
                    ((ptr)[2] << 16) |                                         \
                    ((ptr)[3] <<  8) |                                         \
                    ((ptr)[4]);                                                \
        } else {                                                               \
            (lensize) = 0; /* bad encoding, should be covered by a previous */ \
            (len) = 0;     /* ZIP_ASSERT_ENCODING / zipEncodingLenSize, or  */ \
                           /* match the lensize after this macro with 0.    */ \
        }                                                                      \
    } else {                                                                   \
        (lensize) = 1;                                                         \
        if ((encoding) == ZIP_INT_8B)  (len) = 1;                              \
        else if ((encoding) == ZIP_INT_16B) (len) = 2;                         \
        else if ((encoding) == ZIP_INT_24B) (len) = 3;                         \
        else if ((encoding) == ZIP_INT_32B) (len) = 4;                         \
        else if ((encoding) == ZIP_INT_64B) (len) = 8;                         \
        else if (encoding >= ZIP_INT_IMM_MIN && encoding <= ZIP_INT_IMM_MAX)   \
            (len) = 0; /* 4 bit immediate */                                   \
        else                                                                   \
            (lensize) = (len) = 0; /* bad encoding */                          \
    }                                                                          \
} while(0)

conent

该属性负责保存节点的值。而节点的值是字符数组或者整数,值的类型和长度是由节点的encoding属性来决定的。

例如存储字符数组,编码的最高两位00表示类型为字节数组,后六位001011表示字节数组的长度为11。content保存着结点的值"hello world"。

存储整数值,编码最高两位是11,表示存储的为整数,类型为int16_t,content保存着结点的值10086。

3.压缩列表API

1.创建列表 ziplistNew

unsigned char *ziplistNew(void) {
    //没有节点时,压缩列表的长度bytes = 头部和尾部的长度之和
    unsigned int bytes = ZIPLIST_HEADER_SIZE+ZIPLIST_END_SIZE;
    unsigned char *zl = zmalloc(bytes);
    ZIPLIST_BYTES(zl) = intrev32ifbe(bytes);    //intrev32ifbe函数就是看是否需要进行大小端序转换的
    ZIPLIST_TAIL_OFFSET(zl) = intrev32ifbe(ZIPLIST_HEADER_SIZE);
    ZIPLIST_LENGTH(zl) = 0;//因为是空的压缩列表,节点数量初始化为0
    zl[bytes-1] = ZIP_END;  //设置表末端
    return zl;
}

2.正向遍历 ziplistNext

 该函数返回p指向节点的下一个节点,如果p指向最后一个节点或者结尾标志,则返回NULL。
 其计算逻辑是下一个节点的指针等于p加p指向节点的长度

unsigned char *ziplistNext(unsigned char *zl, unsigned char *p) {
    ((void) zl);
    //获取整个压缩列表的总字节
    size_t zlbytes = intrev32ifbe(ZIPLIST_BYTES(zl));

    if (p[0] == ZIP_END) { /* 如果p指向结尾标志,则返回NULL */
        return NULL;
    }

    /* zipRawEntryLength函数返回p指向节点的长度, 
     * p加p指向节点的长度即下个节点的地址。 */
    p += zipRawEntryLength(p);
    if (p[0] == ZIP_END) {
        return NULL;
    }
    //进行安全判断的,是否p超过了链表的内存范围
    zipAssertValidEntry(zl, zlbytes, p);
    return p;
}


/* 返回p指向节点的长度,是节点长度,不是节点的元素长度 */
static inline unsigned int zipRawEntryLength(unsigned char *p) {
    zlentry e;
    /* 解析p指向元素至e结构体变量中。 */
    zipEntry(p, &e);
    /* e.headersize + e.len表示节点的长度。*/
    return e.headersize + e.len;
}

//验证p是否未到达ziplist分配之外
static inline void zipAssertValidEntry(unsigned char* zl, size_t zlbytes, unsigned char *p) {
    zlentry e;
    assert(zipEntrySafe(zl, zlbytes, p, &e, 1));
}

 其中,函数zipEntry和zipEntrySafe是比较相似的。关于这两个函数的,需要回头在熟悉下结构体zlentry。其主要是把p指向的元素的一些字段解析赋值给zlentry中的字段。

而函数zipEntrySafe与zipEntry区别是增加了数据校验。

//解析p指向的元素的信息到e指向的zlentry结构体变量中。
static inline void zipEntry(unsigned char *p, zlentry *e) {
    /* ZIP_DECODE_PREVLEN是宏函数,//将p对应的节点的记录previous_entry_length所需的字节数和previous_entry_length值赋值给e->prevrawlensize和 e->prevrawlen*/
    ZIP_DECODE_PREVLEN(p, e->prevrawlensize, e->prevrawlen);
    /* ZIP_ENTRY_ENCODING是宏函数,通过元素编码部分的指针将不包含content长度的编码解析至e->encoding字段。 */
    ZIP_ENTRY_ENCODING(p + e->prevrawlensize, e->encoding);
    /* ZIP_DECODE_LENGTH是宏函数,通过传递元素编码部分的指针以及e->encoding,
     * 将记录编码部分的长度以及content的长度赋值给e->lensize、e->len两字段。 */
    ZIP_DECODE_LENGTH(p + e->prevrawlensize, e->encoding, e->lensize, e->len);
    e->headersize = e->prevrawlensize + e->lensize;
    e->p = p;
}

//可以把该函数分成两部分来看,一部分是if (p >= zlfirst && p + 10 < zllast)这个判断,要是符合这个判断就走流程,之后退出。
static inline int zipEntrySafe(unsigned char* zl, size_t zlbytes, unsigned char *p, zlentry *e, int validate_prevlen) {
    unsigned char *zlfirst = zl + ZIPLIST_HEADER_SIZE;
    unsigned char *zllast = zl + zlbytes - ZIPLIST_END_SIZE;
#define OUT_OF_RANGE(p) (unlikely((p) < zlfirst || (p) > zllast))
    
      //第一部分,走捷径的
    /* If threre's no possibility for the header to reach outside the ziplist,
     * take the fast path. (max lensize and prevrawlensize are both 5 bytes) */
    if (p >= zlfirst && p + 10 < zllast) {
        ZIP_DECODE_PREVLEN(p, e->prevrawlensize, e->prevrawlen);
        ZIP_ENTRY_ENCODING(p + e->prevrawlensize, e->encoding);
        ZIP_DECODE_LENGTH(p + e->prevrawlensize, e->encoding, e->lensize, e->len);
        e->headersize = e->prevrawlensize + e->lensize;
        e->p = p;
        /* We didn't call ZIP_ASSERT_ENCODING, so we check lensize was set to 0. */
        if (unlikely(e->lensize == 0))
            return 0;
        /* Make sure the entry doesn't rech outside the edge of the ziplist */
        if (OUT_OF_RANGE(p + e->headersize + e->len))
            return 0;
        /* Make sure prevlen doesn't rech outside the edge of the ziplist */
        if (validate_prevlen && OUT_OF_RANGE(p - e->prevrawlen))
            return 0;
        return 1;
    }
    

    //第二部分,不然不走捷径
    /* Make sure the pointer doesn't rech outside the edge of the ziplist */
    if (OUT_OF_RANGE(p))
        return 0;

    /* Make sure the encoded prevlen header doesn't reach outside the allocation */
    ZIP_DECODE_PREVLENSIZE(p, e->prevrawlensize);
    if (OUT_OF_RANGE(p + e->prevrawlensize))
        return 0;

    /* Make sure encoded entry header is valid. */
    ZIP_ENTRY_ENCODING(p + e->prevrawlensize, e->encoding);
    e->lensize = zipEncodingLenSize(e->encoding);
    if (unlikely(e->lensize == ZIP_ENCODING_SIZE_INVALID))
        return 0;

    /* Make sure the encoded entry header doesn't reach outside the allocation */
    if (OUT_OF_RANGE(p + e->prevrawlensize + e->lensize))
        return 0;

    /* Decode the prevlen and entry len headers. */
    ZIP_DECODE_PREVLEN(p, e->prevrawlensize, e->prevrawlen);
    ZIP_DECODE_LENGTH(p + e->prevrawlensize, e->encoding, e->lensize, e->len);
    e->headersize = e->prevrawlensize + e->lensize;

    /* Make sure the entry doesn't rech outside the edge of the ziplist */
    if (OUT_OF_RANGE(p + e->headersize + e->len))
        return 0;

    /* Make sure prevlen doesn't rech outside the edge of the ziplist */
    if (validate_prevlen && OUT_OF_RANGE(p - e->prevrawlen))
        return 0;

    e->p = p;
    return 1;
#undef OUT_OF_RANGE
}

3.反向遍历 ziplistPrev

该函数返回p指向元素的上一个元素,如果p指向第一个元素,则返回NULL。
 其逻辑是上一个元素的指针等于p减去上一个元素的的长度

unsigned char *ziplistPrev(unsigned char *zl, unsigned char *p) {
    unsigned int prevlensize, prevlen = 0;

    if (p[0] == ZIP_END) {    //p指向结尾标志
        p = ZIPLIST_ENTRY_TAIL(zl);    //返回压缩列表尾节点地址
        return (p[0] == ZIP_END) ? NULL : p;   //如果末尾元素是结束标志,表示是个空的ziplist
    } else if (p == ZIPLIST_ENTRY_HEAD(zl)) {    //头节点的地址
        return NULL;
    } else {    //剩余的, p指向中间元素
        ZIP_DECODE_PREVLEN(p, prevlensize, prevlen); //将p对应的节点的记录previous_entry_length所需的字节数和previous_entry_length值赋值给prevlensize和prevlen
        assert(prevlen > 0);
        p-=prevlen;
        size_t zlbytes = intrev32ifbe(ZIPLIST_BYTES(zl));
        zipAssertValidEntry(zl, zlbytes, p);
        return p;
    }
}

4.插入元素 ziplistInsert

/* 在ziplist指定位置插入新的元素。
 * 
 * zl:ziplist的指针。
 * p:插入位置对应的指针。
 * s:待插入字符串的指针,整数用整数字符串表示。
 * slen:待插入字符串的长度。 */
unsigned char *ziplistInsert(unsigned char *zl, unsigned char *p, unsigned char *s, unsigned int slen) {
    return __ziplistInsert(zl,p,s,slen);
}

unsigned char *__ziplistInsert(unsigned char *zl, unsigned char *p, unsigned char *s, unsigned int slen) {
    size_t curlen = intrev32ifbe(ZIPLIST_BYTES(zl)), reqlen, newlen;
    unsigned int prevlensize, prevlen = 0;
    size_t offset;
    int nextdiff = 0;
    unsigned char encoding = 0;
    long long value = 123456789;
    zlentry tail;

    //1
    if (p[0] != ZIP_END) {    //表示不是尾部添加
        ZIP_DECODE_PREVLEN(p, prevlensize, prevlen);
    } else {
        unsigned char *ptail = ZIPLIST_ENTRY_TAIL(zl);
        if (ptail[0] != ZIP_END) {
            prevlen = zipRawEntryLengthSafe(zl, curlen, ptail);
        }
    }

   //2
    if (zipTryEncoding(s,slen,&value,&encoding)) {
        /* 'encoding' is set to the appropriate integer encoding */
        reqlen = zipIntSize(encoding);
    } else {
        reqlen = slen;
    }

    //3
    reqlen += zipStorePrevEntryLength(NULL,prevlen);//计算新增节点 previous_entry_length 域的长度
    reqlen += zipStoreEntryEncoding(NULL,encoding,slen);//计算新增节点 记录encoding所需的长度

    //4
    int forcelarge = 0;
    nextdiff = (p[0] != ZIP_END) ? zipPrevLenByteDiff(p,reqlen) : 0;
    if (nextdiff == -4 && reqlen < 4) {
        nextdiff = 0;
        forcelarge = 1;
    }
    
    //5
    //因为 realloc 函数可能会改变 zl 指针的地址,要先存一下插入位置相对于压缩列表初始位置的内存偏移
    offset = p-zl;
    newlen = curlen+reqlen+nextdiff;
    zl = ziplistResize(zl,newlen);//内部调用了realloc 
    p = zl+offset;  //重新计算插入位置

    //.....太长了,未完待续,分成两部分
}

//返回值= 新增节点的previous_entry_length属性的长度 - 当前节点的previous_entry_length属性的长度
int zipPrevLenByteDiff(unsigned char *p, unsigned int len) {
    unsigned int prevlensize;
    ZIP_DECODE_PREVLENSIZE(p, prevlensize);
    return zipStorePrevEntryLength(NULL, len) - prevlensize;
}

 1.若不是尾部添加,获取前一个节点的长度并存放在变量prevlen中。如果是尾部添加,则指针移到最后一个节点的起始处,记为ptail。紧接着判断ptail的起始位置是不是尾部ZIP_END,若不是则获取最后一个节点的长度存放在prevlen中。

2.对待插入的内容进行编码,并将内容的长度存放在reqlen变量中。如果是字符数组,则传入的参数slen就是新节点数据的长度。如果是整数,要根据整数的实际类型来计算新节点数据的长度(不是节点长度)。

3.zipStorePrevEntryLength是计算新增节点的previous_entry_length属性的长度。zipStoreEntryEncoding计算新增节点记录encoding所需的长度。reqlen之前就是content的长度值,添加这两个函数的返回值后就是作为新增节点的长度

4.  如果不是在尾部添加节点,要确保后一个节点的 previous_entry_length 域能够容纳新增节点的长度。如果不能容纳,则需要计算差值,用于后面的节点扩展。nextdiff的值可以有三种情况:0-空间相等、4-需要更多空间、-4-空间富余。这个if判断条件有点难理解,后面再讲解。

5.因为 realloc 函数可能会改变 zl 指针的地址,先获取p到压缩链表起始处的偏移量offset。重新申请内存空间,重新计算插入位置。

unsigned char *__ziplistInsert(unsigned char *zl, unsigned char *p, unsigned char *s, unsigned int slen) {
    //.....................

    //6
    /* Apply memory move when necessary and update tail offset. */
    if (p[0] != ZIP_END) {
        //将插入位置之后的内容整个移动到新增节点之后
        //reqlen是新节点的长度,p+reqlen就是为新节点预留位置
        //nextdiff为后一个节点扩展或收缩的内存大小
        //curlen-offset-1+nextdiff为总共需要迁移的内存长度
        memmove(p+reqlen,p-nextdiff,curlen-offset-1+nextdiff);

        //将新增节点的长度存在下一个节点的 previous_entry_length域
        if (forcelarge)
            zipStorePrevEntryLengthLarge(p+reqlen,reqlen);
        else
            zipStorePrevEntryLength(p+reqlen,reqlen);

        //更行尾部对于压缩链表起始处的偏移量
        ZIPLIST_TAIL_OFFSET(zl) =
            intrev32ifbe(intrev32ifbe(ZIPLIST_TAIL_OFFSET(zl))+reqlen);

        //p+reqlen处节点的信息记录到tail中
       //类似 zipEntry(p+reqlen, &tail);zipEntrySafe是做了些安全校验的,前面有讲过
        assert(zipEntrySafe(zl, newlen, p+reqlen, &tail, 1)); 
        //判断p+reqlen处的节点是否是最后一个节点
        if (p[reqlen+tail.headersize+tail.len] != ZIP_END) {
            //zltail 需要加上nextdiff
            ZIPLIST_TAIL_OFFSET(zl) = 
                intrev32ifbe(intrev32ifbe(ZIPLIST_TAIL_OFFSET(zl))+nextdiff);
        }
    } else {
        /* This element will be the new tail. */
        //7. 是尾部,更新zltail的偏移量
        ZIPLIST_TAIL_OFFSET(zl) = intrev32ifbe(p-zl);
    }

    /* When nextdiff != 0, the raw length of the next entry has changed, so
     * we need to cascade the update throughout the ziplist */
    //8 nextdiff!=0就进行连锁更新
    if (nextdiff != 0) {
        offset = p-zl;
        //进行连锁更新
        zl = __ziplistCascadeUpdate(zl,p+reqlen);
        p = zl+offset;
    }

    /* Write the entry */
    //9
    p += zipStorePrevEntryLength(p,prevlen);//保存新增节点的 previous_entry_length 域的值
    p += zipStoreEntryEncoding(p,encoding,slen);//保存新增节点的 encoding 域值
    //保存新增节点的 content 域的值
    if (ZIP_IS_STR(encoding)) {
        memcpy(p,s,slen);
    } else {
        zipSaveInteger(p,value,encoding);
    }
    //10.增加节点,压缩列表的节点数量加1
    ZIPLIST_INCR_LENGTH(zl,1);
    return zl;
}

 6.使用memmove将插入位置之后的内容整个移动到新增节点之后。将新增节点的长度存在下一个节点的 previous_entry_length位置。更行尾部对于压缩链表起始处的偏移量。将p+reqlen处节点的信息记录到tail中。判断p+reqlen处的节点是否是最后一个节点,若不是尾部偏移量zltail 需要加上nextdiff。

7.是尾部,更新zltail的偏移量。

8 nextdiff != 0就进行连锁更新。(这个是重点,后面会讲解)

9.p对于的地址位置已经改变了,需要重新获取新增节点的 previous_entry_length 域的值和新增节点的 encoding 域值,并添加这两个值更行p,之后保存新增节点的conent的内容。

10.增加节点,压缩列表的节点数量加1。返回压缩链表

5.级联更新 __ziplistCascadeUpdate

unsigned char *__ziplistCascadeUpdate(unsigned char *zl, unsigned char *p) {
    zlentry cur;
    size_t prevlen, prevlensize, prevoffset; /* Informat of the last changed entry. */
    size_t firstentrylen; /* Used to handle insert at head. */
    size_t rawlen, curlen = intrev32ifbe(ZIPLIST_BYTES(zl));
    size_t extra = 0, cnt = 0, offset;
    size_t delta = 4; /* Extra bytes needed to update a entry's prevlen (5-1). */
    unsigned char *tail = zl + intrev32ifbe(ZIPLIST_TAIL_OFFSET(zl));

    /* Empty ziplist */
    if (p[0] == ZIP_END) return zl;

    zipEntry(p, &cur); /* no need for "safe" variant since the input pointer was validated by the function that returned it. */
    firstentrylen = prevlen = cur.headersize + cur.len;
    prevlensize = zipStorePrevEntryLength(NULL, prevlen);
    prevoffset = p - zl;
    p += prevlen;

    /* Iterate ziplist to find out how many extra bytes do we need to update it. */
    while (p[0] != ZIP_END) {
        assert(zipEntrySafe(zl, curlen, p, &cur, 0));

        /* Abort when "prevlen" has not changed. */
        if (cur.prevrawlen == prevlen) break;

        /* Abort when entry's "prevlensize" is big enough. */
        if (cur.prevrawlensize >= prevlensize) {
            if (cur.prevrawlensize == prevlensize) {
                zipStorePrevEntryLength(p, prevlen);
            } else {
                /* This would result in shrinking, which we want to avoid.
                 * So, set "prevlen" in the available bytes. */
                zipStorePrevEntryLengthLarge(p, prevlen);
            }
            break;
        }

        /* cur.prevrawlen means cur is the former head entry. */
        assert(cur.prevrawlen == 0 || cur.prevrawlen + delta == prevlen);

        /* Update prev entry's info and advance the cursor. */
        rawlen = cur.headersize + cur.len;
        prevlen = rawlen + delta; 
        prevlensize = zipStorePrevEntryLength(NULL, prevlen);
        prevoffset = p - zl;
        p += rawlen;
        extra += delta;
        cnt++;
    }

    /* Extra bytes is zero all update has been done(or no need to update). */
    if (extra == 0) return zl;

    /* Update tail offset after loop. */
    if (tail == zl + prevoffset) {
        /* When the the last entry we need to update is also the tail, update tail offset
         * unless this is the only entry that was updated (so the tail offset didn't change). */
        if (extra - delta != 0) {
            ZIPLIST_TAIL_OFFSET(zl) =
                intrev32ifbe(intrev32ifbe(ZIPLIST_TAIL_OFFSET(zl))+extra-delta);
        }
    } else {
        /* Update the tail offset in cases where the last entry we updated is not the tail. */
        ZIPLIST_TAIL_OFFSET(zl) =
            intrev32ifbe(intrev32ifbe(ZIPLIST_TAIL_OFFSET(zl))+extra);
    }

    /* Now "p" points at the first unchanged byte in original ziplist,
     * move data after that to new ziplist. */
    offset = p - zl;
    zl = ziplistResize(zl, curlen + extra);
    p = zl + offset;
    memmove(p + extra, p, curlen - offset - 1);
    p += extra;

    /* Iterate all entries that need to be updated tail to head. */
    while (cnt) {
        zipEntry(zl + prevoffset, &cur); /* no need for "safe" variant since we already iterated on all these entries above. */
        rawlen = cur.headersize + cur.len;
        /* Move entry to tail and reset prevlen. */
        memmove(p - (rawlen - cur.prevrawlensize), 
                zl + prevoffset + cur.prevrawlensize, 
                rawlen - cur.prevrawlensize);
        p -= (rawlen + delta);
        if (cur.prevrawlen == 0) {
            /* "cur" is the previous head entry, update its prevlen with firstentrylen. */
            zipStorePrevEntryLength(p, firstentrylen);
        } else {
            /* An entry's prevlen can only increment 4 bytes. */
            zipStorePrevEntryLength(p, cur.prevrawlen+delta);
        }
        /* Foward to previous entry. */
        prevoffset -= cur.prevrawlen;
        cnt--;
    }
    return zl;
}

由于连锁更新比较耗费资源,所以开发时采取的策略是尽量避免连锁更新,从代码中也可以看到,在级联更新时候,如果prevlen有富余,previous_entry_length属性的字节大小也不进行压缩。 

接着看回插入元素时的源代码

/* Insert item at "p". */
unsigned char *__ziplistInsert(unsigned char *zl, unsigned char *p, unsigned char *s, unsigned int slen) {
    int forcelarge = 0;
    nextdiff = (p[0] != ZIP_END) ? zipPrevLenByteDiff(p,reqlen) : 0;
    if (nextdiff == -4 && reqlen < 4) {
        nextdiff = 0;
        forcelarge = 1;
    }

    /* Store offset because a realloc may change the address of zl. */
    newlen = curlen+reqlen+nextdiff;
    zl = ziplistResize(zl,newlen);
}

int zipPrevLenByteDiff(unsigned char *p, unsigned int len) {
    unsigned int prevlensize;
    //宏,展开之后根据p[0]处的值计算出prevlensize,如果p[0]<254,prevlensize为1,否则为5
    ZIP_DECODE_PREVLENSIZE(p, prevlensize);
    //zipStorePrevEntryLength函数如果第一个参数为NULL,则根据len字段计算需要的字节数,同理,len<254为1个字节,否则为5个字节
    return zipStorePrevEntryLength(NULL, len) - prevlensize;
}

nextdiff= 即将插入的entry长度所需要的存储字节数 - 插入位置p当前保存prev_entry_len字段的字节数.

其值有三种类型

  • 0: 空间相等
  • 4:需要更多空间
  • -4:空间富余

当 nextdiff == -4 时,reqlen 怎么可能会小于 4,并且当我们理解了 reqlen < 4 后,也会很疑惑 if 控制块里面代码的作用,通过下图来说明。

该图片来自 redis-6.06 底层数据结构——压缩列表 - 知乎

 红色字的讲明白了为什么需要这个if判断的。此时reqlen=3,nextdiff=-4,curlen+reqlen+nextdiff是小于curlen的,那realloc后,总长度变小,会导致最后一个节点数据丢失。

6.删除节点

删除节点的主要逻辑(配合源代码看,需要知道源代码中的变量才好了解该逻辑)。

 源代码如下:

unsigned char *ziplistDelete(unsigned char *zl, unsigned char **p) {
    size_t offset = *p-zl;
    zl = __ziplistDelete(zl,*p,1);
    *p = zl+offset;
    return zl;
}
unsigned char *ziplistDeleteRange(unsigned char *zl, int index, unsigned int num) {
    unsigned char *p = ziplistIndex(zl,index);
    return (p == NULL) ? zl : __ziplistDelete(zl,p,num);
}

//从压缩列表的 P 位置删除 num 个节点
unsigned char *__ziplistDelete(unsigned char *zl, unsigned char *p, unsigned int num) {
    unsigned int i, totlen, deleted = 0;
    size_t offset;
    int nextdiff = 0;
    zlentry first, tail;
    size_t zlbytes = intrev32ifbe(ZIPLIST_BYTES(zl));
    
    //1
    //获取P位置的节点信息
    zipEntry(p, &first);
    for (i = 0; p[0] != ZIP_END && i < num; i++) {
        //移动到下一个节点的起始位置
        p += zipRawEntryLengthSafe(zl, zlbytes, p);
        //deleted为实际要删除的节点数量
        deleted++;
    }
    
    //2
    //要删除的节点长度之和
    totlen = p-first.p; /* Bytes taken by the element(s) to delete. */
    if (totlen > 0) {
        uint32_t set_tail;
        //当前位置是否是压缩列表尾部
        if (p[0] != ZIP_END) {
            //计算要存下first节点的前一个节点的长度,p位置节点的previous_entry_length域需要扩展的字节数
            nextdiff = zipPrevLenByteDiff(p,first.prevrawlen);

            //根据nextdiff更新p位置节点的 previous_entry_length 域位置
            p -= nextdiff;
            //再修改P位置节点的 previous_entry_length域的值
            zipStorePrevEntryLength(p,first.prevrawlen);

            //更新最后一个节点到压缩列表开头的内存偏移量
             set_tail = intrev32ifbe(ZIPLIST_TAIL_OFFSET(zl))-totlen; 

            //获取p位置的节点信息赋值给tail,并进行安全校验
            assert(zipEntrySafe(zl, zlbytes, p, &tail, 1));
            //判断tail节点是否是最后一个节点
            if (p[tail.headersize+tail.len] != ZIP_END) {
                //最后一个节点到压缩列表开头的内存偏移量还有计算上扩展或收缩的大小
                set_tail = set_tail + nextdiff;
            }

            //内存迁移
            size_t bytes_to_move = zlbytes-(p-zl)-1;
            memmove(first.p,p,bytes_to_move);
        } else {
            /* The entire tail was deleted. No need to move memory. */
           set_tail = (first.p-zl)-first.prevrawlen;
        }

        /* Resize and update length */
        offset = first.p-zl;
        zlbytes -= totlen - nextdiff;
        zl = ziplistResize(zl, zlbytes);
        p = zl+offset;

        /* Update record count */
        ZIPLIST_INCR_LENGTH(zl,-deleted);

         /* Set the tail offset computed above */
        assert(set_tail <= zlbytes - ZIPLIST_END_SIZE);
        ZIPLIST_TAIL_OFFSET(zl) = intrev32ifbe(set_tail);

        if (nextdiff != 0)
            //连锁更新
            zl = __ziplistCascadeUpdate(zl,p);
    }
    return zl;
}

7.查找entry ziplistFind

在zl指向的ziplist上,查找与字符串vstr匹配的元素。依次匹配每个元素,如果匹配成功就返回,否则继续匹配下一个元素。

时间复杂度为O(N^2),因为节点值可能是字符串,而字符串比较复杂度为O(N)

/*
 * p 是开始查找的压缩列表节点地址
 * vstr 是要查找的元素内容
 * vlen 是要查找的元素长度
 * skip 是每查找一次跳过的元素个数
*/
unsigned char *ziplistFind(unsigned char *zl, unsigned char *p, unsigned char *vstr, unsigned int vlen, unsigned int skip) {
    int skipcnt = 0;
    unsigned char vencoding = 0;
    long long vll = 0;
    size_t zlbytes = ziplistBlobLen(zl);    //获得压缩链表的总长度

    while (p[0] != ZIP_END) {
        struct zlentry e;
        unsigned char *q;

        assert(zipEntrySafe(zl, zlbytes, p, &e, 1));    //把p对应的节点信息赋值给e
        q = p + e.prevrawlensize + e.lensize;   //指针移到 content 的位置

        if (skipcnt == 0) {
            /* Compare current entry with specified entry */
            if (ZIP_IS_STR(e.encoding)) {   // 如果编码是字符串的
                if (e.len == vlen && memcmp(q, vstr, vlen) == 0) {
                    return p;
                }
            } else {//将要查找的元素编码为整数
                if (vencoding == 0) {
                    if (!zipTryEncoding(vstr, vlen, &vll, &vencoding)) {    //数字解码成功的话返回1
                        /* If the entry can't be encoded we set it to
                         * UCHAR_MAX so that we don't retry again the next
                         * time. */
                        vencoding = UCHAR_MAX;
                    }
                    /* Must be non-zero by now */
                    assert(vencoding);
                }

                /* Compare current entry with specified entry, do it only
                 * if vencoding != UCHAR_MAX because if there is no encoding
                 * possible for the field it can't be a valid integer. */
                if (vencoding != UCHAR_MAX) {
                    long long ll = zipLoadInteger(q, e.encoding);   //返回q指针位置对应的节点的元素
                    if (ll == vll) {
                        return p;    //匹配成功,返回结果
                    }
                }
            }
            /* Reset skip count */
            skipcnt = skip;
        } else {
            /* Skip entry */
            skipcnt--;
        }

        p = q + e.len;  //到达下一节点的起始位置
    }
    return NULL;
}

需要注意的是,find函数需传一个skip的值。skip的引入主要是上层容器的使用。假如说上层容器是一个hash结构,使用了ziplist,那么会按照顺序先存储key,再存储value,那么find的时候只需要查key即可,通过skip控制多跳一下,提升查找效率。

4.连锁更新问题

ziplist中每个节点的previous_entry_length记录了前一个节点的长度,考虑在表头插入节点的场景:

如果列表所有节点长度都小于254字节(previous_entry_length 域的都是 1 字节长),且插入节点大于等于254字节,就会导致所有节点的previous_entry_length属性都必须从1字节扩展为5字节。Redis 将这种在特殊情况下产生的连续多次空间扩展操作称之为 连锁更新(cascade update)

看下面例子:给定一个节点个数为3,每个节点大小均为253字节的ziplist,往表头插入一个500字节大小的节点。

​ 不仅仅是插入节点会引起连锁更新,删除节点也可能会引发连锁更新。连锁更新在最坏的情况下需对压缩列表执行 N 次空间重新分配操作,而每次空间重分配的最坏复杂度为 O(N),所以连锁更新的最坏复杂度为 O(N^2)

既然连锁更新的最坏复杂度为O(N^2),为什么Redis还是放心使用ziplist?

  • 连锁更新触发条件苛刻,只有满足存在多个连续长度为250-253之间的节点才能触发。
  • ziplist只应用于节点数少且数据小的场景,即使出现了连续更新,需要更新的节点数量也很少,不会出现性能问题。

5.引出结构 listpack

这些连锁更新的问题理解的是有点复杂的, Redis提出了一个优化后的替代结构listpack。

Redis7.0 才将 listpack 完整替代 ziplist。

listpack的结构和节点结构

该图片来自 https://segmentfault.com/a/1190000041670843

listpack主要做了如下两点改进:

  • 头部省去了4字节的zltail字段
  • entry中不再保存prev_entry_length字段,而是改为保存本entry自己的长度,并且是存储在每个entry的尾部。

listpack是如何实现从尾部到头部遍历?

ziplist被设计为适合从尾部到头部逐个遍历,那么listpack也需要有这个功能。

首先通过tot-bytes偏移到结尾,然后从右到左读取element-tot-len(注意该字段设计为从右往左读取),这样既实现了尾部到头部的遍历,又没有连锁更新的情况。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1586600.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

L2-2 巴音布鲁克永远的土(二分+并查集)

思路&#xff1a;我们可以二分答案&#xff0c;然后判断当前答案合不合理。 对于判断答案合理&#xff0c;可以用并查集&#xff0c;看mid能否把所有检查点连进一个集合中&#xff0c;枚举每个结点&#xff0c;如何当前结点周围的四个方向可以连的话&#xff0c;就加进同一个集…

host文件nginx代理 综合理解

之前一直理解得很糙 导致遇到问题很迷糊 今天经过大佬两句话讲明白了 特此记录 host文件 首先host做了代理 也就是对浏览器的DNS寻址做了拦截 具体原理可以参照当我们在地址栏输入URL的时候浏览器发生了什么 例如127.0.0.1 www.baidu.com 将 127.0.0.1 www.baidu.com 链接自…

DHCP抓包分析

DHCP动态路由配置协议&#xff0c;是C/S架构&#xff0c;由DHCP服务器为客户端动态分配IP信息。 DHCP客户端首次接入网络数据交互过程&#xff1a; 如何解决IP地址的冲突&#xff1a; ▫ DHCP服务器端&#xff1a;收到DHCP DISCOVER报文时&#xff0c;给客户端分配IP地址前会发…

有关NVIDIA 4090的pytorch版本安装心得

目录 1.查看版本2.安装对应版本的pytorch3.检测是否安装成功4.问题 1.查看版本 输入 nvidia-smi 查看GPU支持的cuda最高版本 如上图所示&#xff0c;你的GPU支持的最高CUDA版本便为12.2&#xff0c;所以你要安装CUDA版本不能高于该版本。安装版本不能太低&#xff0c;建议就小…

高阶流程图(SIPOC)

SIPOC高阶流程图是一种流程映射和改进方法&#xff0c;它使用可视化的方式描述一个或多个流程的输入和输出。SIPOC是五个单词的首字母缩写&#xff0c;分别代表供应商&#xff08;Suppliers&#xff09;、输入&#xff08;Inputs&#xff09;、过程&#xff08;Processes&#…

python使用概率算法模拟寻找伴侣

对于模拟寻找伴侣的问题,人在特定时期内能够遇见的异性是有限的,假设在某段时期内能够遇见的异性人数是n,那么问题在于在不能全面对n位候选人进行评估的情况下,以最大概率选中最好的那位。 假设n位候选人的水平用n个不同的数值表示,数值越大表示其水平则越高,问题在于,…

深入剖析Tomcat(一) 实现一个简单的Web容器

前言 在Java生态中&#xff0c;Tomcat的应用可谓经久不衰&#xff0c;众多Java Web应用都依赖它来进行部署。 虽然我们经常使用它&#xff0c;但是如果不深入了解的话&#xff0c;它对我们来说就一直是一个黑盒。就单纯的作为一个使用者来说&#xff0c;肯定也知道它内部应用…

Win10下安装Anaconda

Anaconda是可以便捷获取包且对包能够进行管理&#xff0c;同时对环境可以统一管理的发行版本&#xff0c;它包含了conda、Python在内的超过180个科学包及其依赖项。 安装Anaconda Anaconda官方下载网址&#xff1a;https://www.anaconda.com/download 官网页面中&#xff0c…

探究 ChatGPT 的心脏--Transformer(基础知识第一篇)

Transformer 是 ChatGPT 的核心部分&#xff0c;如果将 AI 看做一辆高速运转的汽车&#xff0c;那么 Transformer 就是最重要的引擎。它是谷歌于 2017 年发表的《Attention is All You Need》中提出的 Sequence-to-sequence 的模型&#xff0c;诞生之后便一统江湖&#xff0c;在…

【考研数学】《660》+《880》高分搭配方法

&#x1f4dd;《660题》和《880题》高效刷题方法 1️⃣做题要有针对性&#xff0c;不要为了做题而做题 &#x1f4aa;660和880题虽然多&#xff0c;但是你不用全都做完&#xff0c;你可以把它当成是题源&#xff0c;里面的每一道题都很经典&#xff0c;如果搞懂一道&#xff…

51蓝桥杯之DS18B20

DS18B20 基础知识 代码流程实现 将官方提供例程文件添加到工程中 添加onewire.c文件到keil4里面 一些代码补充知识 代码 #include "reg52.h" #include "onewire.h" #include "absacc.h" unsigned char num[10]{0xc0,0xf9,0xa4,0xb0,0x99,…

最近一些前端面试问题整理

最近一些前端面试问题整理 4月8号1. TS 中的 类型别名 和接口的区别是什么&#xff1f;2. 什么是深拷贝和浅拷贝&#xff1f;深浅拷贝的方法有哪些&#xff1f;浅拷贝&#xff08;Shallow Copy&#xff09;深拷贝&#xff08;Deep Copy&#xff09;区别总结 3. 使用 JSON.strin…

如何在淘~宝接单和解决别人问题-java开发

如下这是一个连接&#xff1a;https://s.tb.cn/c.0vDtL3https://s.tb.cn/c.0vDtL3 解决各种问题。可付费咨询

炒股自动化:交易接口API才是重点,券商官方散户可用的接口

上一篇我们用get_full_tick取到了数据&#xff0c;也讲了变量和字典的基本概念&#xff0c;这次我们向交易所发送订单试试。前面文章的链接放在文末了&#xff0c;需要的可以看一下 这些内容是给新手看的&#xff0c;找接口的大佬们直接拉到文末即可 取市场数据的方法很多&am…

查询优化-ANY类型子连接提升

瀚高数据库 目录 文档用途 详细信息 文档用途 已知查询树基本结构的基础上&#xff0c;在一定条件下对SQL中的子连接提升&#xff0c; 详细信息 子连接提升流程 SQL: SELECT sname FROM student WHERE sno > ANY (SELECT sno FROM score);图1.1是该SQL对应的查询树&#…

代码随想录算法训练营第三十一天| 455.分发饼干、376.摆动序列、53.最大子序和

系列文章目录 目录 系列文章目录455.分发饼干贪心算法大饼干喂胃口大的&#xff08;先遍历胃口&#xff09;胃口大的先吃大饼干(先遍历饼干&#xff09;小饼干先喂胃口小的&#xff08;先遍历胃口&#xff09;胃口小的先吃小饼干&#xff08;先遍历饼干&#xff09; 376. 摆动序…

为什么在学校很难真正学好嵌入式?

10几年前,我是读电气工程专业,学了很多东西,结构,电机、绘图,plc等等.. 其实,都没什么鸟用,出来还是像个废物。 后面我自学转了单片机开发,说句难听点,自己买个开发板都比在学校学得深。 可能是这个专业的问题,主攻不是嵌入式方向,老师用汇编点个流水灯,这门课就…

第四百五十三回

文章目录 1. 问题描述2. 优化方法2.1 缩小范围2.2 替代方法 3. 示例代码4. 内容总结 我们在上一章回中介绍了"如何获取AppBar的高度"相关的内容&#xff0c;本章回中将介绍关于MediaQuery的优化.闲话休提&#xff0c;让我们一起Talk Flutter吧。 1. 问题描述 我们在…

编程新手必看,python中条件控制语句学习(13)

介绍&#xff1a; Python3中的条件控制主要通过if、elif和else关键字来实现&#xff0c;它们用于根据条件执行特定的代码块。 if语句&#xff1a;这是最基本的条件控制结构。如果满足某个条件&#xff08;条件为True&#xff09;&#xff0c;则执行相应的代码块。在Python中&am…