惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Darknet – Hacking Tools, Hacker News & Cyber Security
T
Threat Research - Cisco Blogs
C
Cyber Attacks, Cyber Crime and Cyber Security
AI
AI
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
H
Hacker News: Front Page
P
Proofpoint News Feed
Know Your Adversary
Know Your Adversary
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
The Hacker News
The Hacker News
腾讯CDC
O
OpenAI News
Vercel News
Vercel News
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
量子位
S
Schneier on Security
T
Tor Project blog
B
Blog
The Register - Security
The Register - Security
宝玉的分享
宝玉的分享
S
Securelist
有赞技术团队
有赞技术团队
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
G
GRAHAM CLULEY
Hugging Face - Blog
Hugging Face - Blog
W
WeLiveSecurity
D
DataBreaches.Net
TaoSecurity Blog
TaoSecurity Blog
博客园 - Franky
Latest news
Latest news
I
Intezer
Hacker News: Ask HN
Hacker News: Ask HN
WordPress大学
WordPress大学
PCI Perspectives
PCI Perspectives
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
小众软件
小众软件
GbyAI
GbyAI
F
Full Disclosure
V
V2EX
Project Zero
Project Zero
The Last Watchdog
The Last Watchdog
T
Tenable Blog
Security Latest
Security Latest
Attack and Defense Labs
Attack and Defense Labs
F
Fortinet All Blogs
S
Secure Thoughts
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Google DeepMind News
Google DeepMind News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint

编程沉思录 - Featured

博客升级了~ C++如何计算普通类型的 Hash 值:基于 gcc/clang 源码分析 std::any 的性能开销:基于 libstd++ 源码分析 从源码角度解读 enable_shared_from_this Context的错误使用引发Panic的问题复盘 Go 1.22 可能将改变 for 循环变量的语义 剖析Golang Bigcache的极致性能优化 os.Chmod 时到底用 777 还是 0777? 一个 Gin 缓存中间件的设计与实现 高性能服务之优雅终止 Elasticsearch 学习:入门篇 个人博客及公众号常用工具 FileBeat-Log 相关配置指南 Redis 事件循环器 (AE) 实现剖析 Elastic-Filebeat 实现原理剖析 Golang 标准库限流器 time/rate 使用介绍 微信 libco 协程库源码分析 C++ 智能指针的正确使用方式 C++ lambda 内 std::move 失效问题的思考 云风 coroutine 协程库源码分析 WebSocket 订单推送稳定性优化方案 深入理解网络 IO 模型 客户端秒级时间同步方案 muduo 源码剖析 自动生成数据库文档小工具的诞生 ClassViewer 的介绍及实现 首次半马记 结合 Guava 源码解读布隆过滤器 服务器校园网登录验证解决方案 第一篇博客
libco 的定时器实现:时间轮
2019-12-15 · via 编程沉思录 - Featured
定时器是网络框架中非常重要的组成部分,往往可以利用定时器做一些超时事件的判断或者定时清理任务等。 定时器有许多经典高效的实现。例如,libevent 采用了最小堆实现定时器,redis 则结合自己场景直接使用了简单粗暴…