Linux | Tools | top & htop 2018-05-29 tech 3074 words 7 mins read top top 命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资源占用情况,类似win的任务管理器。 top 是一个动态显示过程,即可以通过 Read more...
『心之所向,素履以往』— 千岛湖 2018-05-20 footprint 74 words 1 min read 逃离去往小岛 偷闲一段时光 ... ” 许个心愿:期待下次能和心爱的人儿一起再次驻足那片土地,邂逅在湖边的午后… 微风拂面,秀发飘扬&hel Read more...
Linux | Tools | Logrotate 使用总结 2018-05-11 tech 2357 words 5 mins read 日志实在是太有用了,它记录了程序运行时各种信息。通过日志可以分析用户行为,记录运行轨迹,查找程序问题。可惜磁盘的空间是有限的,就像飞机里的黑 Read more...
MongoDB | 使用 logrotate 管理日志 2018-05-11 tech 1381 words 3 mins read 记一次日志引起的故障:服务器 mongod 日志出现暴增,一天增加了 7+G 之多… Why? 问题现象 内网测试服务器出现了日志暴增的现象,日志描述如下: 1 2 Read more...
Nginx | 学习笔记 2018-04-24 tech 2397 words 5 mins read Nginx? 1 2 3 4 Who? 俄罗斯人开发 What? 十分轻量级的HTTP服务器, 'engine X' How? 高性能、模块丰富、配置灵活、低消耗 Why? 基于事件驱动方式编写 Nginx 有那些功能? Read more...
杭州 | 夜游京杭运河 2018-04-21 life 46 words 1 min read 我拿起酒杯对自己说: 一杯敬朝阳,一杯敬月光 一杯敬明天,一杯敬过往 拍摄于 2018-04-21 日傍晚 20 时许,设备 S7Edge Read more...
Golang | 关于 for range 的一些细节 2018-03-28 tech 3267 words 7 mins read for range 的迭代变量会被重用 range expression 的副本参与 iteration 1. iteration variable 重用 for range 的 idiomatic(惯用)使用方式是使用 short variable declaration(:=) 形式在 for expression 中声明 iteration variable,但需 Read more...
Golang | net/http => Customize Handler、ServeMux、Middleware 2018-03-20 tech 767 words 2 mins read 怎么定义 Handler? 怎么定义 Server? 怎么定义 Middleware? 如何用? 目录 自定义 Handler 自定义 Server 中间件 Middleware See Also 自定义 Handler 标准库http提 Read more...