码迷,mamicode.com
首页 >  
搜索关键字:sga shared pool scope sysstat    ( 10321个结果
ranch分析学习(一)
Ranch 是一个tcp处理的程序框架。官方的解释 Ranch is a socket acceptor pool for TCP protocols. 主要目的是提供一个方便,易用,高效,稳定的tcp处理基础程序。前面我也用它作为基础写了个简易的聊天的程序。cowboy底层通信处理也是ranc.....
分类:其他好文   时间:2014-07-16 23:04:19    阅读次数:194
Struts2中s:set标签和s:if标签小结
1、s:set标签格式:说明:把jsp页面中的一个值,以name存储起来。Scope存储的范围是在application、session、request、page……。默认是存储在该action中。用法①:这个值是一个list容器,迭代使用s:iterator标签,Notice:list、set容器...
分类:其他好文   时间:2014-07-16 22:58:31    阅读次数:225
angularjs 服务
内置服务1、$timeout2、$watch(obj,fun)fun(newVal,oldVal,scope) //newVal是新改变的值,oldVal是旧值内置函数:1、dateFilter(time,format)//参数time是时间,format是格式化
分类:Web程序   时间:2014-07-16 21:15:16    阅读次数:186
[Oracle] - 性能优化工具(5) - AWRSQL
在AWR中定位到问题SQL语句后想要了解该SQL statement的详细运行计划,于是就用AWR报告中得到的SQL ID去V$SQL等几个动态性能视图中查询,但发现V$SQL或V$SQL_PLAN视图都已经找不到相应SQL ID的记录,一般来说这些语句已经从shared pool共享池中被替换出去...
分类:数据库   时间:2014-07-11 11:58:50    阅读次数:307
Eclipse - Failed to load the JNI shared Library (JDK)
When I try openingEclipse, a pop-up dialog states:Failed to load the JNI shared library "C:/JDK/bin/client/jvm.dll"`.Following this, Eclipse force clo...
分类:系统相关   时间:2014-07-11 11:45:13    阅读次数:238
jedis异常:NoSuchElementException: Timeout waiting for idle object
项目线上环境发现:java.util.NoSuchElementException: Timeout waiting for idle object 问题原因:不应该在try中释放资源,而应该在finally中处理。虽然是非常基础的语法,但还是很有可能会写错了,引以为戒。 pool池中的jedis对象资源没有被释放,导致新请求无法获取空闲对象,出现服务端500错误。若代码加入循环获...
分类:其他好文   时间:2014-07-11 08:32:05    阅读次数:168
【足迹C++primer】41、文本查询程序
/** * 功能:使用标准库:文本查询程序 * 时间:2014年7月10日09:10:15 * 作者:cutter_point */ #include #include #include #include #include #include #include #include using namespace std; using line_no=vector::size_type; /**...
分类:编程语言   时间:2014-07-11 00:16:17    阅读次数:305
ORACLE not available
ERROR: ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist 进程 ID: 0 会话 ID: 0 序列号: 0...
分类:数据库   时间:2014-07-10 21:02:42    阅读次数:274
linux 生成动态库时提示relocation R_X86_64_32 against `.rodata' can not be used when making a shared object;
linux生成动态库时遇到了relocation R_X86_64_32 against `.rodata' can not be used when making a shared object; recompile with -fPIC错误。 由于我的系统是AMD64位的,所以需要在编译的时候添加 -fPIC选项 解决方法: 例如: g++ -c -fPIC head.cpp ...
分类:系统相关   时间:2014-07-10 21:02:04    阅读次数:16872
深入理解pthread_cond_wait、pthread_cond_signal
LINUX环境下多线程编程肯定会遇到需要条件变量的情况,此时必然要使用pthread_cond_wait()函数。但这个函数的执行过程比较难于理解。     pthread_cond_wait()的工作流程如下(以MAN中的EXAMPLE为例):        Consider two shared variables x and y, protected by the mutex mut,...
分类:其他好文   时间:2014-07-10 19:50:36    阅读次数:347
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!