楼主有点小白,个人觉得值得纪念,不喜勿喷。 最近在看java编程思想,遇到了求吸血鬼数的那一题,自己做的时候是把四位数分别放到数组arr里面,然后建立两个数组分别存arr中的两位。之后就遇到了许多问题,比如:如何将已经放入a数组的数不放入b数组,如何遍历数组使numa和numb不会重复计算等。其中将 ...
分类:
其他好文 时间:
2016-05-20 19:35:01
阅读次数:
192
前提安装postfix#!/bin/shelllog=/home/DBdata/DB2.err#原来error记录数numA=`cat/tmp/mysqlerrorNB.log`#当前error数numB=`cat$log|grep"ERROR"|wc-l`#增加的error条目numC=$(($numB-$numA))#从日志中过滤出error日志errTotal=/tmp/mysqlerrTotal.log#对新增的error日志提取,..
分类:
数据库 时间:
2016-05-03 12:52:29
阅读次数:
229
class Maths{ public int div(String x,String y)throws NumberFormatException, ArithmeticException{ int result=0; try{ int numa=Integer.parseInt(x); int ...
分类:
编程语言 时间:
2016-04-28 19:49:19
阅读次数:
161
#include #include #include #include #include #include using namespace std; const static int M = 40; int numA[M]; int numB[M]; //使用string重置numA void re... ...
分类:
其他好文 时间:
2016-04-28 09:25:17
阅读次数:
191
class Maths{ public int div(String x,String y)throws NumberFormatException, ArithmeticException{ int result=0; try{ int numa=Integer.parseInt(x); int ...
分类:
其他好文 时间:
2016-04-24 15:32:27
阅读次数:
153
在mongodb登录时日志显示如下:[loguser@32_180 ~]$ mongo -u root -p xxxxx --authenticationDatabase adminMongoDB shell version: 2.6.4connecting to: testServer has startup warnings: 2015-07-16T04:35:34.694+0800 [i...
分类:
数据库 时间:
2016-01-26 10:45:16
阅读次数:
172
程序局部性原理:空间局部性:时间局部性:NUMA:非一致性内存访问降低了缓存命中CPU亲缘性绑定缓存写的机制:通写,回写IO设备:设备控制器(适配器)和设备本身控制器:集成在主板上的一块芯片或一组芯片从操作系统接收命令,并完成命令的执行驱动程序:通常应该由设备生产商..
分类:
系统相关 时间:
2016-01-07 20:23:38
阅读次数:
273
求和:方法一、使用命令替换法:#!/bin/bashread -p 'input number a...' numAread -p 'input number b...' numB#这里有两个要注意的点,一:等号两边不能有空格、二:小括号之间不能有空格sum=$(($numA+$numB))echo...
分类:
系统相关 时间:
2016-01-03 18:19:21
阅读次数:
183
今天在DELL服务器的Redhat6.4上安装Oracle10.2.0.4,用sqlplus登陆数据库,会出现如下的提示:mapsizemismatch;abort:Success,不过其他的功能都正常,只是有这个提示解决方法:altersystemset"_enable_NUMA_optimization"=falsescope=spfile;altersystemset"_db_block_numa"=1s..
分类:
数据库 时间:
2015-12-31 21:20:58
阅读次数:
1054
随着计算机中CPU核数目的增加,传统的UMA(unifonnmemoryaccess)架构由于对关键硬件(如中央内存控制器)的竞争加剧出现了性能上的瓶颈,即扩展性不强。而NUMA架构则以其良好的可扩展性,逐渐成为多核系统的主流架构。本节主要介绍一下目前三大主流的架构体系。在传统的PC机上我..
分类:
其他好文 时间:
2015-12-29 06:33:14
阅读次数:
227