摘要: ```java package pres.ndz.simple; public class App { private static final int _1MB = 1024*1024; /** * -verbose:gc -Xms20M -Xmx20M -Xmn10M -XX:+PrintGCDetails -XX:SurvivorRatio=8 ... 阅读全文
posted @ 2019-06-06 07:05 加州水果 阅读(672) 评论(0) 推荐(1) 编辑
摘要: Java 堆内存分析 mat 使用 https://www.cnblogs.com/AloneSword/p/3821569.html 优秀博客关于堆溢出分析(也是根据葛一鸣的《实战Java虚拟机》的堆分析) https://blog.csdn.net/lhn1234321/article/deta 阅读全文
posted @ 2019-06-05 19:36 加州水果 阅读(342) 评论(0) 推荐(0) 编辑
摘要: ```go package test; import ( "testing" "fmt" ) type InteegetCell struct{ Value int Next InteegetCell } // 初始化链表(建立一个头指针) func initCell() InteegetCell{ 阅读全文
posted @ 2019-06-02 19:03 加州水果 阅读(149) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jingmoxukong/p/7826982.html 阅读全文
posted @ 2019-06-02 12:10 加州水果 阅读(117) 评论(0) 推荐(0) 编辑
摘要: Guava QuickHttp JOOQ 轻量的orm框架 阅读全文
posted @ 2019-06-02 12:00 加州水果 阅读(424) 评论(0) 推荐(0) 编辑
摘要: ```shell $ wc -l filename #统计文件多少行 $ command >> file #将输出以追加的方式重定向到 file ``` 阅读全文
posted @ 2019-06-02 12:00 加州水果 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 一、关于application.yaml 读取的优先级 1.1、遵循先外后内的原则 第一、读取相对于应用程序的目录/config 目录 第二、在应用程序的目录里,也就是在运行目录的同级目录 第三、程序内、resources/config目录 第四、程序内、resources目录 示例运行目录 noh 阅读全文
posted @ 2019-06-02 12:00 加州水果 阅读(160) 评论(0) 推荐(0) 编辑
摘要: Mysql 速查笔记 一、连接 查看当前所有连接的详细 或 进入Mysql 查看当前连接数(Threads就是连接数) 或 进入Mysql 查看指定Host的连接 杀死连接 杀死指定用户的连接 通过进入Mysql杀死 查看Mysql最大连接数 修改Mysql最大连接数 一、当前进程内修改, 重启失效 阅读全文
posted @ 2019-05-31 18:07 加州水果 阅读(143) 评论(0) 推荐(0) 编辑
摘要: ``` !/usr/bin/env bash example see https://www.cnblogs.com/yxzfscg/p/5338775.html spring boot shell https://blog.csdn.net/qq_34208844/article/details/ 阅读全文
posted @ 2019-05-30 19:22 加州水果 阅读(1478) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-30 11:02 加州水果 阅读(676) 评论(0) 推荐(0) 编辑