上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 50 下一页
摘要: Epoll 环境为Linux 内核2.6 以上版本 Windows下不能启动 1:判断Linux环境 2:pom.xml配置 参考地址: https://www.jianshu.com/p/bb3718226f36 3:启动成功后如图,有一个异常警告 处理方式 参考地址: https://githu 阅读全文
posted @ 2018-09-26 16:56 1161588342 阅读(753) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/just3do/article/details/68957618 阅读全文
posted @ 2018-09-26 12:51 1161588342 阅读(64) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/drcoding/p/4942277.html 阅读全文
posted @ 2018-09-25 17:05 1161588342 阅读(106) 评论(0) 推荐(0) 编辑
摘要: public static boolean isOSLinux() { Properties prop = System.getProperties(); String os = prop.getProperty("os.name"); if (os != null && os.toLowerCase().indexOf("linux") > -... 阅读全文
posted @ 2018-09-21 18:18 1161588342 阅读(783) 评论(0) 推荐(0) 编辑
摘要: find /root/demo -mmin +10 -type f -name '*.png' -exec rm -rf {} \; find 相关: http://man.linuxde.net/find 阅读全文
posted @ 2018-09-18 15:49 1161588342 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 对象池 优点: 防止过多的创建对象合理利用对象, 缺点: 会有线程阻塞 Demo 测试代码 运行main方法效果如下; 可见对象重复利用了, 阅读全文
posted @ 2018-09-10 15:58 1161588342 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 基础文献 https://blog.csdn.net/abcd898989/article/details/50809321 简单Demo配置 pom.xml 主类上加上Aop注解 阅读全文
posted @ 2018-09-07 13:33 1161588342 阅读(124) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/guxiaobei/p/8126322.html 阅读全文
posted @ 2018-09-07 11:16 1161588342 阅读(78) 评论(0) 推荐(0) 编辑
摘要: Hadoop 有2大核心HDFS (Hadoop Distributed File System)分布式文件系统 , MapRedurce 归约计算 HDFS 把文件按块存储, NameNode 负责 存储文件信息块的地址信息, DataNode负责存储实际的数据. 默认块为64M, 一个NameN 阅读全文
posted @ 2018-09-07 11:01 1161588342 阅读(146) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/hepingqingfeng/p/7263782.html 阅读全文
posted @ 2018-09-06 17:22 1161588342 阅读(81) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 50 下一页