All Projects → menwengit → Redis_source_annotation

menwengit / Redis_source_annotation

redis 3.2.8 的源码注释

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Redis source annotation

Pottery
Redis for humans. 🌎🌍🌏
Stars: ✭ 204 (-54.87%)
Mutual labels:  dict, redis
Freemove
Move directories without breaking shortcuts or installations
Stars: ✭ 443 (-1.99%)
Mutual labels:  ssd
Permissions2
🔐 Middleware for keeping track of users, login states and permissions
Stars: ✭ 423 (-6.42%)
Mutual labels:  redis
Opserver
Stack Exchange's Monitoring System
Stars: ✭ 4,126 (+812.83%)
Mutual labels:  redis
Ssd Tensorflow
Single Shot MultiBox Detector in TensorFlow
Stars: ✭ 4,066 (+799.56%)
Mutual labels:  ssd
Mobilenetv2 Ssdlite
Caffe implementation of SSD and SSDLite detection on MobileNetv2, converted from tensorflow.
Stars: ✭ 435 (-3.76%)
Mutual labels:  ssd
Stackexchange.redis.extensions
Stars: ✭ 419 (-7.3%)
Mutual labels:  redis
Middleware development learning
中间件、高性能服务器、分布式存储等(redis、memcache、nginx、大容量redis pika、rocksdb、mongodb、wiredtiger存储引擎、高性能代理中间件)二次开发、性能优化,逐步整理文档说明并配合demo指导--每周末定时更新2-3篇技术文章及程序demo--(技术交流QQ群:568892619)
Stars: ✭ 449 (-0.66%)
Mutual labels:  redis
Spring Boot Study
SpringBoot框架源码实战(已更新到springboot2版本实现)~基本用法,Rest,Controller,事件监听,连接数据库MySQL,jpa,redis集成,mybatis集成(声明式与xml两种方式~对应的添删查改功能),日志处理,devtools配置,拦截器用法,资源配置读取,测试集成,Web层实现请求映射,security安全验证,rabbitMq集成,kafka集成,分布式id生成器等。项目实战:https://github.com/hemin1003/yfax-parent 已投入生产线上使用
Stars: ✭ 440 (-2.65%)
Mutual labels:  redis
Spring boot
Spring Boot 使用总结 和 demo。 如果您觉得本代码对您有所帮助,请点击页面右上方"Star"
Stars: ✭ 431 (-4.65%)
Mutual labels:  redis
Redis Plus Plus
Redis client written in C++
Stars: ✭ 428 (-5.31%)
Mutual labels:  redis
Pika
Pika is a nosql compatible with redis, it is developed by Qihoo's DBA and infrastructure team
Stars: ✭ 4,439 (+882.08%)
Mutual labels:  redis
Redis Admin
redis client tool,redis web client,redis web ui,spring-boot support
Stars: ✭ 436 (-3.54%)
Mutual labels:  redis
Lada Cache
A Redis based, fully automated and scalable database cache layer for Laravel
Stars: ✭ 424 (-6.19%)
Mutual labels:  redis
Logstash Logger
Ruby logger that writes logstash events
Stars: ✭ 442 (-2.21%)
Mutual labels:  redis
Framework Learning
计算机学习资料(Java , Jvm , Linux , Mysql , Netty , Redis , Netty , Spring , SpringBoot , Mybatis , Rabbitmq ,计算机网络 , 数据结构与算法 , 设计模式 )Github网页阅读:https://guang19.github.io/framework-learning , Gitee网页版阅读: https://qsjzwithguang19forever.gitee.io/framework-learning
Stars: ✭ 416 (-7.96%)
Mutual labels:  redis
Cookbook
🎉🎉🎉JAVA高级架构师技术栈==任何技能通过 “刻意练习” 都可以达到融会贯通的境界,就像烹饪一样,这里有一份JAVA开发技术手册,只需要增加自己练习的次数。🏃🏃🏃
Stars: ✭ 428 (-5.31%)
Mutual labels:  redis
Redis
Vapor provider for RediStack
Stars: ✭ 434 (-3.98%)
Mutual labels:  redis
Ssd.pytorch
A PyTorch Implementation of Single Shot MultiBox Detector
Stars: ✭ 4,499 (+895.35%)
Mutual labels:  ssd
Centrifuge
Real-time messaging library for Go with scalability in mind
Stars: ✭ 446 (-1.33%)
Mutual labels:  redis

redis 源码剖析和注释技术博客专栏:

文章地址 文件名称
Redis源码剖析和注释(一)--- 链表结构 adlist.c 和 adlist.h
Redis源码剖析和注释(二)--- 简单动态字符串 sds.c 和 sds.h
Redis源码剖析和注释(三)--- Redis 字典结构 dict.c 和 dict.h
Redis源码剖析和注释(四)--- 跳跃表(skiplist) t_zset.c和 redis.h
Redis源码剖析和注释(五)--- 整数集合(intset) intset.c 和 intset.h
Redis源码剖析和注释(六)--- 压缩列表(ziplist) ziplist.c 和 ziplist.h
Redis源码剖析和注释(七)--- 快速列表(quicklist) quicklist.c 和 quicklist.h
Redis源码剖析和注释(八)--- 对象系统(redisObject) object.c 和 server.h
Redis源码剖析和注释(九)--- 字符串命令的实现(t_string) t_string.c
Redis源码剖析和注释(十)--- 列表键命令实现(t_list) t_list.c 和 server.h
Redis源码剖析和注释(十一)--- 哈希键命令的实现(t_hash) t_hash.c 和 server.h
Redis源码剖析和注释(十二)--- 集合类型键实现(t_set) t_set.c 和 server.h
Redis源码剖析和注释(十三)--- 有序集合类型键实现(t_zset) t_zset.c 和 server.h
Redis源码剖析和注释(十四)---- Redis 数据库及相关命令实现(db) db.c 和 server.h
Redis源码剖析和注释(十五)---- 通知功能实现与实战 (notify) notify.c
Redis源码剖析和注释(十六)---- Redis输入输出的抽象(rio) rio.c 和 rio.h
Redis源码剖析和注释(十七)--- RDB持久化机制 rdb.c 和 rdb.h
Redis源码剖析和注释(十八)--- Redis AOF持久化机制 aof.c
Redis源码剖析和注释(十九)--- Redis 事件处理实现 ae.c 和 ae.h (多路复用库:ae_epoll.c)
Redis源码剖析和注释(二十)--- 网络连接库剖析(client的创建/释放、命令接收/回复、Redis通信协议分析等)
Redis源码剖析和注释(二十一)--- 单机服务器实现(命令的执行、周期性任务、maxmemory策略实现、服务器主函数 server.c 和 server.h
Redis源码剖析和注释(二十二)--- Redis 复制(replicate)源码详细解析 replication.c
Redis源码剖析和注释(二十三)--- Redis Sentinel实现(哨兵的执行过程和执行的内容) sentinel.c
Redis源码剖析和注释(二十四)--- Redis Sentinel实现(哨兵操作的深入剖析) sentinel.c
Redis源码剖析和注释(二十五)--- Redis Cluster 的通信流程深入剖析(载入配置文件、节点握手、分配槽) cluster.c 和 cluster.h
Redis源码剖析和注释(二十六)--- Redis 集群伸缩原理源码剖析 cluster.c 和 cluster.h
Redis源码剖析和注释(二十七)--- Redis 故障转移流程和原理剖析 cluster.c 和 cluster.h
Redis源码剖析和注释(二十八)--- Redis 事务实现和乐观锁 multi.c

redis-3.0.7源码注释的文件:

链表结构 adlist.c 和 adlist.h
简单动态字符串结构 sds.c 和 sds.h
字典结构 dict.c 和 dict.h
跳跃表结构 t_zset.c和 redis.h
整数集合 intset.c 和 intset.h
压缩列表 ziplist.c 和 ziplist.h

redis-3.2.8源码注释的文件:

quicklist结构 quicklist.c 和 quicklist.h
redis对象系统 object.c 和 server.h
redis字符串类型键的实现 t_string.c
redis列表类型键的实现 t_list.c 和 server.h
redis哈希类型键的实现 t_hash.c 和 server.h
redis集合类型键的实现 t_set.c 和 server.h
redis 有序集合类型键的实现 t_zset.c 和 server.h
redis 数据库实现 db.c 和 server.h
redis IO层的抽象rio rio.c 和 rio.h
redis RDB持久化的实现 rdb.c 和 rdb.h
redis AOF持久化的实现 aof.c
redis 事件处理的实现 ae.c 和 ae.h (多路复用库:ae_epoll.c)
redis 网络链接库,负责发送/接收命令、创建/销毁redis客户端、通信协议分析、CLIENT命令实现等工作 networking.c 和 server.c(client结构等)
redis 单机服务器实现,包括命令的执行,周期性任务serverCron(),maxmemory的策略、服务器main()函数 server.c 和 server.h
redis 复制(replication)功能 replication.c
redis 哨兵(Sentinel)实现 sentinel.c
redis 集群(Cluster)实现 cluster.c 和 cluster.h
redis 事务实现 multi.c
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].