带着问题去思考!大家好 上次我们讲到GC的一些基础知识,感谢评论的大佬给我指点。 配置参数 关于配置垃圾回收器的方法不是很多,所以建议不要随意去动,垃圾回收器的配置以及调优,很大程度上由硬件配置,可用资源和程序的行为决定。屈指可数的几个参数也是用于控制很高层的行为,主要取决于程序的类型, 工作站模式 ...
分类:
其他好文 时间:
2020-03-26 01:31:16
阅读次数:
70
重启mac,在重启黑屏的时候,按住 Command + R 进入恢复模式,注意查看 菜单 里面的 终端 工具。 1. 关闭 终端输入 csrutil disable 2. 打开 终端输入 csrutil enable ...
分类:
系统相关 时间:
2020-03-25 10:55:55
阅读次数:
176
1.该参数为动态参数,设置如下 SQL>alter system set enable_ddl_logging=true; 2.DDL日志和alter日志有相似的格式和行为。但是只包含DDL语句日志 3.oracle只是为数据库组件提供DDL日志,且需要将参数enable_ddll_logging设 ...
分类:
数据库 时间:
2020-03-25 10:48:53
阅读次数:
223
安装firewalld防火墙 yum install firewalld 开启服务 systemctl start firewalld.service 关闭防火墙 systemctl stop firewalld.service 开机自动启动 systemctl enable firewalld.s ...
分类:
其他好文 时间:
2020-03-24 23:02:14
阅读次数:
59
内托管模式超时 不允许请求谓词、直接请求无响应、拒绝服务405
Net Core IIS 部署 进程内托管 ...
分类:
Web程序 时间:
2020-03-24 13:20:04
阅读次数:
102
memcached高缓存搭建搭建服务端和客户端,让服务端去链接客户端web客户端:192.168.247.161服务端:192.168.247.160[root@localhost~]#hostnamectlset-hostnameclient[root@localhost~]#su[root@client~]#[root@nginx~]#hostnamectlset-hostnameserver
分类:
系统相关 时间:
2020-03-22 14:13:12
阅读次数:
94
1.docker在linux上的安装 yum install -y docker systemctl enable docker && systemctl start docker sysctl net.bridge.bridge-nf-call-iptables=1 2.配置国内镜像 https: ...
分类:
其他好文 时间:
2020-03-22 10:27:58
阅读次数:
68
可以参考osg示例代码osggeometryshaders 它用glsl版本比较老#version 120 #extension GL_EXT_geometry_shader4 : enable 使用gl_PositionIn[],而不能使用gl_in[],这个需要更高版本 类似以下代码: #ver ...
分类:
其他好文 时间:
2020-03-21 14:26:15
阅读次数:
56
首先导入pom依赖 <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactI ...
分类:
编程语言 时间:
2020-03-21 11:26:41
阅读次数:
105
centOS7添加开机启动服务/执行脚本 1 开机启动服务 在centos7中添加开机自启服务非常方便,只需要两条命令(以Jenkins为例): #设置jenkins服务为自启动服务systemctl enable jenkins.service #启动jenkins服务systemctl star ...
分类:
其他好文 时间:
2020-03-20 20:38:27
阅读次数:
86