操作系统 CentOS : https://www.centos.org/download/ WEB中间件 Apache Tomcat : https://tomcat.apache.org/ 内存分析工具 Memory Analyzer : https://www.eclipse.org/mat/ ...
分类:
其他好文 时间:
2020-11-08 17:16:36
阅读次数:
26
#include<iostream> #include<memory.h> #include<cmath> #include<algorithm> using namespace std; typedef struct { int x, y; }node; node d[6000]; int r, ...
分类:
其他好文 时间:
2020-11-08 17:11:46
阅读次数:
15
公司项目目前使用 SOA 架构(Service-oriented architecture:服务导向架构),每个服务作为一个单体对外提供接口,服务之间使用 GitHub OpenFeign 调用接口。 服务提供者正常提供接口,把需要暴露的接口封装为一个 client jar 包,服务调用者正常引入 ...
分类:
其他好文 时间:
2020-11-08 16:39:17
阅读次数:
16
1、以管理员身份打开cmd窗口; 2、停止mysql服务,cmd输入命令net stop mysql ; 或者在服务中停止mysql(如下图); 3、转到mysql服务bin目录, 运行命令 .\mysqld --console --skip-grant-tables --shared-memory ...
分类:
数据库 时间:
2020-11-07 17:23:21
阅读次数:
25
TechRoad 1. Architecture <Java Application architecture> modular, Spring context config <EIS> technology decision, base eis-platform-brms <MS PPP> cha ...
分类:
其他好文 时间:
2020-11-07 16:51:15
阅读次数:
24
基于MVC的RESTful风格的实现 1.RESTful风格阐述 REST服务是一种ROA(Resource-Oriented Architecture,面向资源的架构)应用。主要特点是方法信息存在于HTTP协议的方法中(GET,POST,PUT,DELETE),作用域存在于URL中。例如,在一个获 ...
Redisson入门 Author:Ricky Date:2017-04-24 Redisson概述 Redisson是架设在Redis基础上的一个Java驻内存数据网格(In-Memory Data Grid)。充分的利用了Redis键值数据库提供的一系列优势,基于Java实用工具包中常用接口,为 ...
分类:
其他好文 时间:
2020-11-06 01:16:38
阅读次数:
19
点赞再看,养成习惯,微信搜索【三太子敖丙】关注这个互联网苟且偷生的工具人。本文GitHubhttps://github.com/JavaFamily已收录,有一线大厂面试完整考点、资料以及我的系列文章。上次给老公们说过了死循环cpu飙高的排查过程,今天就带着老公们看看堆内存溢出我们一般怎么排查的。cpu100%排查文章在排查之前,我想jvm的基础知识大家应该都是了解了的吧?老婆我就是不了解,人家要
分类:
其他好文 时间:
2020-11-04 18:30:42
阅读次数:
12
pandas.to_csv 中文乱码问题 df.to_csv("predict_result.csv",encoding="utf_8_sig") 打印所在机器的内存大小 import psutil def print_memory_size(): '''输出系统内存''' mem = psutil ...
分类:
编程语言 时间:
2020-11-04 18:23:03
阅读次数:
19
原文链接:https://without.boats/blog/two-memory-bugs-from-ringbahn/ 原文标题:Two Memory Bugs From Ringbahn 公众号:Rust 碎碎念 翻译: Praying 在实现ringbahn[1]的时候,我引入了至少两个 ...
分类:
其他好文 时间:
2020-11-04 17:55:28
阅读次数:
13