上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 98 下一页
摘要: connPoolStats — MongoDB Manual https://docs.mongodb.com/manual/reference/command/connPoolStats/ connPoolStats The command connPoolStats returns inform 阅读全文
posted @ 2021-06-30 14:44 papering 阅读(454) 评论(0) 推荐(0)
摘要: 小结: 浏览器地址栏: test.com 整站 url 变为 www.test.com server{ listen 80; listen 443 ssl http2; server_name test.com; #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则 #err 阅读全文
posted @ 2021-06-30 11:37 papering 阅读(269) 评论(0) 推荐(0)
摘要: 编写service启动脚本 · linux · 看云 https://www.kancloud.cn/yuanrun/linux/734847 service脚本的编写 service管理的服务需要将其脚本文件放在/etc/init.d目录中 #!/bin/bash # # Comments to 阅读全文
posted @ 2021-06-30 10:31 papering 阅读(240) 评论(0) 推荐(0)
摘要: 有向无环图描述表达式 (a+b)*((a+b)/a)至少需要的顶点数目 阅读全文
posted @ 2021-06-28 00:45 papering 阅读(465) 评论(0) 推荐(0)
摘要: Maximum edges that can be added to DAG so that it remains DAG - GeeksforGeeks https://www.geeksforgeeks.org/maximum-edges-can-added-dag-remains-dag/ A 阅读全文
posted @ 2021-06-25 22:09 papering 阅读(152) 评论(0) 推荐(0)
摘要: leader failed to send out heartbeat on time; took too long, leader is overloaded likely from slow disk 阅读全文
posted @ 2021-06-25 11:03 papering 阅读(827) 评论(1) 推荐(0)
摘要: 百度C++工程师的那些极限优化(并发篇) 原创 凯文神父 百度Geek说 2021-06-16 https://mp.weixin.qq.com/s/0Ofo8ak7-UXuuOoD0KIHwA 阅读全文
posted @ 2021-06-24 23:55 papering 阅读(73) 评论(0) 推荐(0)
摘要: 小结: 1、 缓存更新流程的统一和与触发源的解耦: 使用 MQ 来驱动多地多机房的缓存更新,在不同的触发源触发后,会查询最新的 DB 数据,然后发出一个缓存更新的 MQ 消息,不同地区机房的缓存系统同时监听该主题并各自进行缓存的更新。 对于 MQ 我们使用携程开源消息中间件 QMQ 和 Kafka, 阅读全文
posted @ 2021-06-24 23:49 papering 阅读(231) 评论(0) 推荐(0)
摘要: Go语言逆向初探 原创 半个大西瓜 看雪学院 2021-06-23 阅读全文
posted @ 2021-06-23 19:21 papering 阅读(96) 评论(0) 推荐(0)
摘要: 中通快递的云原生改造之路 施尧 InfoQ 2021-06-23 阅读全文
posted @ 2021-06-23 19:19 papering 阅读(83) 评论(0) 推荐(0)
摘要: Stable Minimum Storage Merging by Symmetric Comparisons Pok-Son Kim1? and Arne Kutzner2 http://itbe.hanyang.ac.kr/ak/papers/esa2004.pdf // symMerge me 阅读全文
posted @ 2021-06-23 12:47 papering 阅读(120) 评论(0) 推荐(0)
摘要: https://cs.nyu.edu/~roweis/csc310-2006/extras/huffman_1952_minimum-redundancy-codes.pdf 哈夫曼树_百度百科 https://baike.baidu.com/item/%E5%93%88%E5%A4%AB%E6%9 阅读全文
posted @ 2021-06-22 20:16 papering 阅读(116) 评论(0) 推荐(0)
摘要: 滴滴基于Binlog的采集架构与实践 原创 滴滴技术团队 滴滴技术 2021-06-22 阅读全文
posted @ 2021-06-22 20:15 papering 阅读(159) 评论(0) 推荐(0)
摘要: 深度 | 字节跳动微服务架构体系演进 原创 成国柱 火山引擎云原生 2021-06-21 阅读全文
posted @ 2021-06-22 12:29 papering 阅读(426) 评论(0) 推荐(0)
摘要: 将二叉树每个节点的左右子树互换 阅读全文
posted @ 2021-06-22 01:25 papering 阅读(201) 评论(0) 推荐(0)
摘要: Block Swap Algorithm Block swap algorithm for array rotation in C++ https://www.tutorialspoint.com/block-swap-algorithm-for-array-rotation-in-cplusplu 阅读全文
posted @ 2021-06-22 01:16 papering 阅读(159) 评论(0) 推荐(0)
摘要: AWS 安全讲堂:零信任实践全知道! https://mp.weixin.qq.com/s/H1Z2g6kKVpcQBhhimmrkkg 安全架构评审实战 https://mp.weixin.qq.com/s/YQn1FQICk1esxvBCHZntFA 零信任网络建设及部分细节讨论 - FreeB 阅读全文
posted @ 2021-06-18 23:23 papering 阅读(89) 评论(0) 推荐(0)
摘要: 简单易懂的设计模式(上) 原创 凹凸嫚-清汤饺子 凹凸实验室 2021-06-17 阅读全文
posted @ 2021-06-18 12:38 papering 阅读(62) 评论(0) 推荐(0)
摘要: 路由正则 实践 React 单页应用 虚拟路由 location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. # try_files $u 阅读全文
posted @ 2021-06-17 20:36 papering 阅读(175) 评论(0) 推荐(0)
摘要: Module ngx_http_map_module http://nginx.org/en/docs/http/ngx_http_map_module.html 阅读全文
posted @ 2021-06-17 14:56 papering 阅读(68) 评论(0) 推荐(0)
摘要: 十亿级流量下,我与Redis时延小突刺的战斗史 https://mp.weixin.qq.com/s/lZ3Q8jP1RaoHQfKk4Ms5IA 十亿级流量下,我与Redis时延小突刺的战斗史 原创 Wang Shaodong vivo互联网技术 2021-06-16 阅读全文
posted @ 2021-06-16 23:57 papering 阅读(104) 评论(0) 推荐(0)
摘要: 简单网络管理协议_百度百科 https://baike.baidu.com/item/%E7%AE%80%E5%8D%95%E7%BD%91%E7%BB%9C%E7%AE%A1%E7%90%86%E5%8D%8F%E8%AE%AE/2986113 简单网络管理协议(SNMP) 是专门设计用于在 IP 阅读全文
posted @ 2021-06-16 00:12 papering 阅读(985) 评论(0) 推荐(0)
摘要: 6.11 计时器 | Go 语言原本 https://golang.design/under-the-hood/zh-cn/part2runtime/ch06sched/timer/ https://mp.weixin.qq.com/s/tkm9nYcyUxE2vUbplSO-pA Go-Zero如 阅读全文
posted @ 2021-06-15 10:58 papering 阅读(224) 评论(0) 推荐(0)
摘要: 10 | 创新机制:腾讯如何打造具备创新力的组织机制? 新时代产品经理进阶之路-前滴滴出行产品负责人,前腾讯长安产品负责人- 拉勾教育 https://kaiwu.lagou.com/course/courseInfo.htm?courseId=910#/detail/pc?id=7499 阅读全文
posted @ 2021-06-12 14:50 papering 阅读(97) 评论(0) 推荐(0)
摘要: ctx = context.WithValue(ctx, "2", "two") fmt.Println(ctx.Value("1")) fmt.Println(ctx.Value("2")) 阅读全文
posted @ 2021-06-11 23:01 papering 阅读(78) 评论(0) 推荐(0)
摘要: 内存 交换技术 覆盖技术 区别 阅读全文
posted @ 2021-06-11 12:29 papering 阅读(95) 评论(0) 推荐(0)
摘要: MySQL :: MySQL 8.0 Reference Manual :: 13.5 Prepared Statements https://dev.mysql.com/doc/refman/8.0/en/sql-prepared-statements.html 预编译语句(Prepared St 阅读全文
posted @ 2021-06-10 19:51 papering 阅读(858) 评论(0) 推荐(0)
摘要: 哈希查找 硬件加速 阅读全文
posted @ 2021-06-10 12:48 papering 阅读(87) 评论(0) 推荐(0)
摘要: HEAD - HTTP | MDN https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Methods/HEAD PATCH - HTTP | MDN https://developer.mozilla.org/zh-CN/docs/Web/HTTP/ 阅读全文
posted @ 2021-06-10 10:12 papering 阅读(111) 评论(0) 推荐(0)
摘要: Android客户端网络预连接优化机制探究 https://mp.weixin.qq.com/s/8bEb4kPKLK19jMN20Mcmkg 阅读全文
posted @ 2021-06-10 10:04 papering 阅读(136) 评论(0) 推荐(0)
摘要: // insert_inUpsSQL = "INSERT INTO %s (mid,nickname,account_type,category_id,fans,account_state,sign_type,apply_at,%s,is_deleted) VALUES (?,?,?,?,?,?,? 阅读全文
posted @ 2021-06-09 20:57 papering 阅读(182) 评论(0) 推荐(0)
摘要: 页帧 阅读全文
posted @ 2021-06-09 12:25 papering 阅读(54) 评论(0) 推荐(0)
摘要: 实践: 1) 当前分支 b1 增改了部分代码 ;git stash; git checkout b2; b2代码;git checkout b1;git stash apply 2) 在分支b上提交了c0,继续在b上开发f1;过程中收到对c0的code review CR0 后,git stash, 阅读全文
posted @ 2021-06-09 12:03 papering 阅读(66) 评论(0) 推荐(0)
摘要: type reverse struct { // This embedded Interface permits Reverse to use the methods of // another Interface implementation. Interface} // Package sort 阅读全文
posted @ 2021-06-08 21:05 papering 阅读(120) 评论(0) 推荐(0)
摘要: // Auto-generated variant of sort.go:quickSortfunc quickSort_func(data lessSwap, a, b, maxDepth int) { for b-a > 12 { if maxDepth == 0 { heapSort_func 阅读全文
posted @ 2021-06-08 15:36 papering 阅读(208) 评论(0) 推荐(0)
摘要: C:/Go/pkg/mod/google.golang.org/grpc@v1.29.1/metadata/metadata.go:180 // FromOutgoingContextRaw returns the un-merged, intermediary contents// of rawM 阅读全文
posted @ 2021-06-08 14:24 papering 阅读(112) 评论(0) 推荐(0)
摘要: window.setTimeout - Web API 接口参考 | MDN https://developer.mozilla.org/zh-CN/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout window.setTimeout WindowO 阅读全文
posted @ 2021-06-08 10:07 papering 阅读(376) 评论(0) 推荐(0)
摘要: IOPS(Input/Output Operations Per Second)是一个用于计算机存储设备(如硬盘(HDD)、固态硬盘(SSD)或存储区域网络(SAN))性能测试的量测方式,可以视为是每秒的读写次数。和其他性能测试一样,存储设备制造商提出的IOPS不保证就是实际应用下的性能。 IOPS 阅读全文
posted @ 2021-06-07 11:48 papering 阅读(511) 评论(0) 推荐(0)
摘要: Working Around Memory Leaks in Your Django Application - Adam Johnson https://adamj.eu/tech/2019/09/19/working-around-memory-leaks-in-your-django-app/ 阅读全文
posted @ 2021-06-07 10:41 papering 阅读(93) 评论(0) 推荐(0)
摘要: celery 内存泄露 阅读全文
posted @ 2021-06-07 10:37 papering 阅读(98) 评论(1) 推荐(0)
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 98 下一页