嵌套类 Posted on 2015年12月4日 by 海明博士 - Updated 2017年12月5日 嵌套类 1.嵌套类 1.1嵌套类的定义 在一个类体中定义的类叫作嵌套类。拥有嵌套类的类叫外围类。 1.2嵌套类.. Read more python
SVN 安装 Posted on 2015年11月10日 by 海明博士 - Updated 2017年11月10日 安装SVN yum install subversion authz 是权限控制文件 passwd 是帐号密码.. Read more 版本控制
nginx配置ssl加密(单双向认证、部分https) Posted on 2015年1月5日 by 海明博士 - Updated 2018年1月5日 nginx下配置ssl本来是很简单的,无论是去认证中心买SSL安全证书还是自签署证书,但最近公司OA的一个需求.. Read more Nnginx
nginx配置location总结及rewrite规则写法 Posted on 2015年1月5日 by 海明博士 - Updated 2018年1月5日 1. location正则写法 一个示例: [crayon-647de446ace7404190.. Read more Nnginx
Slab Posted on 2014年11月30日 by 海明博士 - Updated 2017年11月30日 Slab 近在维护一台CentOS服务器的时候,发现内存无端”损失”了许多,free和.. Read more Linux 内存
怎样查看SLAB泄露问题 Posted on 2014年11月28日 by 海明博士 - Updated 2017年11月30日 SLAB Slab allocator是Linux kernel的内存分配机制,各内核子系统、模块、驱动程序都.. Read more Linux 内存
如何诊断SLUB问题 Posted on 2014年11月25日 by 海明博士 - Updated 2017年11月30日 SLUB 在前文中,我们介绍了在RHEL6及较早的kernel上诊断slab泄漏问题的两种方法,可以说相当麻烦.. Read more Linux 内存
用KMEMLEAK检测内核内存泄漏 Posted on 2014年9月30日 by 海明博士 - Updated 2017年11月30日 KMEMLEAK 所谓内存泄漏(memory leak),是指分配出去的内存在用完之后忘了释放,造成内存浪费,.. Read more Linux 内存
理解 go interface 的 5 个关键点 Posted on 2014年3月6日 by 海明博士 - Updated 2018年3月6日 1、interface 是一种类型 Go type I interface { Get() int } 123 type I interface {Get() int} 首先 i.. Read more go 语言
go http请求指定请求HOST Posted on 2014年2月28日 by 海明博士 - Updated 2018年3月1日 在公司内部,经常会有域名是需要绑定host才能访问的,如果是通过浏览器访问,我们会修改本机的hosts文件;然.. Read more go 语言