码迷,mamicode.com
首页 >  
搜索关键字:sga shared pool scope sysstat    ( 10321个结果
MySQL-优化
MySQL-优化 优化风险 #优化可能带来的问题 优化不总是对一个单纯的环境进行!还很可能是一个复杂的已投产的系统。 优化手段本来就有很大的风险,只不过你没能力意识到和预见到! 任何的技术可以解决一个问题,但必然存在带来一个问题的风险! 对于优化来说解决问题而带来的问题控制在可接受的范围内才是有成果 ...
分类:数据库   时间:2020-05-30 18:23:46    阅读次数:67
angularJS 循环添加 ng-model
for(var index=1;index<7;index++){ $scope["model_"+index] = index } //效果 = $scope.model_1 = 1 $scope.model_2 = 2 $scope.model_3 = 3 $scope.model_4 = 4 ...
分类:Web程序   时间:2020-05-30 15:40:08    阅读次数:97
delphi 判断点在多边形内
1 unit MainFM; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, 7 Vcl.Control ...
分类:Windows程序   时间:2020-05-30 15:35:58    阅读次数:87
线程池创建
static final int poolSize = 50; static final long keepAliveTime = 0L; static final ThreadFactory threadFactory = new ThreadFactoryBuilder().setNameFor ...
分类:编程语言   时间:2020-05-30 12:57:37    阅读次数:46
python 进程
计算密集型的部分适合使用进程,耗时的部分适合使用线程 1 from multiprocessing import Pool 2 3 # 创建一个进程池,里面放5个进程 4 pool = Pool(5) 5 6 # 阻塞模式 7 pool.apply(task, args=(t,)) 8 9 # 非阻 ...
分类:编程语言   时间:2020-05-30 12:33:18    阅读次数:80
python 非阻塞模式 线程池
1 """ 2 非阻塞模式:当进程池有空闲,就将任务放入,它会继续执行主进程 3 """ 4 import os 5 import time 6 from multiprocessing import Pool 7 from random import random 8 9 container = ...
分类:编程语言   时间:2020-05-30 12:24:07    阅读次数:82
为了更好的多线程性能,在对象创建或者更新时,若数据大于2047字节则 Python 的 GIL 会被释放。 执行计算密集型任务如压缩或哈希时释放 GIL
hashlib — Secure hashes and message digests — Python 3.8.3 documentation https://docs.python.org/3.8/library/hashlib.html For better multithreading pe ...
分类:编程语言   时间:2020-05-29 21:46:45    阅读次数:110
三层交换机DHCP
三层交换。 DHCP EnaVlan d Vlan 2 //创建vlan2Vlan 3ExitConf tInt f0/1 //进去0/1接口Aw acc vlan 2 //划分Int f0/2Aw acc vlan3Ip dhcp pool vlan2NetDeDNSExit Int vlan 2 ...
分类:其他好文   时间:2020-05-29 21:22:39    阅读次数:52
一脚踩进java——Maven创建war类型项目
一、创建步骤 1.1 创建Maven Project时选择packaging为war 1.2 在webapp下,新建META-INF和WEB-INF/web.xml 1.3 在pom.xml文件中,添加java ee的三个相关jar包 1)<scope> jar的有效范围,provided表示编译器 ...
分类:编程语言   时间:2020-05-29 17:53:29    阅读次数:64
OAuth2.0-4整合网关
.antMatchers("/**").access("#oauth2.hasScope('scope1')")上面这行代码,只是控制大范围的访问权限,具体到方法级的访问 还得看permission 以上教程代码顺序如下: 网关服务: 1.application.properties #zuul不传 ...
分类:其他好文   时间:2020-05-29 13:41:11    阅读次数:70
10321条   上一页 1 ... 50 51 52 53 54 ... 1033 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!