码迷,mamicode.com
首页 >  
搜索关键字:sga shared pool scope sysstat    ( 10321个结果
Android数据储存——SharedPreferences储存
SharedPreferences也是一种轻型的数据存储方式,它的本质是基于XML文件存储key-value键值对数据,通常用来存储一些简单的配置信息。其存储位置在/data/data//shared_prefs目录下。 读取SharedPreference  1.获取SharedPreference对象     /*      * name 打开的SharedPreference...
分类:移动开发   时间:2014-05-01 22:15:35    阅读次数:536
cmake
http://www.cmake.org/cmake/help/v2.8.8/cmake.htmladd_executable的作用是指示CMake生成一个可执行文件add_library的作用是指示CMake生成一个库,根据参数SHARED还是STATIC来决定生成动态库还是静态库include_...
分类:其他好文   时间:2014-05-01 21:19:44    阅读次数:418
Effective Java 66 Synchronize access to shared mutable data
When multiple threads share mutable data, each thread that reads or writes the data must perform synchronization. Without synchronization, there is no...
分类:数据库   时间:2014-05-01 09:14:25    阅读次数:506
Java内存的原型及工作原理理解
一、java虚拟机内存原型寄存器:我们在程序中无法控制。栈:存放基本类型的数据和对象的引用,但对象本身不存放在栈中,而是存放在堆中堆:存放用new产生的数据静态域:存放在对象中用static定义的静态成员常量池:存放常量非RAM存储:硬盘等永久存储空间。二、常量池(constant pool) 常....
分类:编程语言   时间:2014-05-01 06:54:37    阅读次数:390
PlayerPrefs游戏存档
本地存储。相当于Flash里面的SharedObject。Android位置:机器自身存储的(非扩展卡)/data/data/appname/shared_prefs/{AppName}.xml,如果想查看需要Root。IOS位置:暂时还没找到。其他位置:参考https://docs.unity3d...
分类:其他好文   时间:2014-05-01 05:38:35    阅读次数:281
Memory Notification: Library Cache Object loaded into SGA
问题现象: 数据库服务器可以ping通,但SSH连接不了;应用、plsqldeveloper 也都连接不了。事情到了这个地步,只能重启服务器。服务器环境:oracle10.2.0.1 +rhel5.8重启后,查看实例日志:Wed Apr 30 13:12:24 2014Memory Notifica...
分类:其他好文   时间:2014-05-01 02:56:19    阅读次数:478
Oracle sga、pga介绍修改
Oracle sga、pga介绍修改...
分类:数据库   时间:2014-04-30 22:44:39    阅读次数:241
Pat(Advanced Level)Practice--1063(Set Similarity)
Pat1063代码 题目描述: Given two sets of integers, the similarity of the sets is defined to be Nc/Nt*100%, where Nc is the number of distinct common numbers shared by the two sets, and Nt is the to...
分类:其他好文   时间:2014-04-29 13:44:20    阅读次数:325
QT静态库和动态库的导出
由于静态库是不需要导出的,所以在写QT的前置声明的时候需要说明 #if defined(QT_SHARED) #ifdef COMMONLIB #define COMMONLIB_EXPORT Q_DECL_EXPORT #else #define COMMONLIB_EXPORT Q_DECL_IMPORT #endif #else #ifdef COMMONLIB #defi...
分类:其他好文   时间:2014-04-28 10:47:42    阅读次数:374
<jsp:useBean>的使用
介绍 jsp:useBean动作用来装载一个将在JSP页面中使用的JavaBean。这个功能非常有用,因为它使得我们既可以发挥Java组件重用的优势,同时也避免了损失JSP的方便性。 语法: id:JavaBean的引用名 class:用于指定JavaBean的类 scope:用于指定JavaBean的范围,默认情况下,scope被设置为page setProperty动作用于...
分类:Web程序   时间:2014-04-28 10:45:40    阅读次数:397
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!