数据库
首页 > 数据库> > 单线程照样飞起 | redis字典快速映射+hash釜底抽薪+渐进式rehash

单线程照样飞起 | redis字典快速映射+hash釜底抽薪+渐进式rehash

作者:互联网

前言

应用场景

image-20210624161020745

哈希表

image-20210624164553947

数组节点

image-20210624165611646

image-20210625113012772

字典

多态字典

image-20210625110556458

rehash

image-20210625133555602

image-20210625140300363

image-20210625140528097

image-20210625142224557

image-20210625142326375

渐进式rehash

总结

①、字典表在redis被广泛使用,基于字典表优秀的设计解决redis单线程问题

②、字典里包含哈希表,哈希表内部使用节点负责存储key、value

③、字典type实现多态字典用于多场景!

④、渐进式rehash解决服务卡顿问题

标签:rehash,hash,单线程,redis,链表,哈希,字典
来源: https://blog.csdn.net/u013132051/article/details/118480216