楼主: rekcah0

alter table cache对于keep pool有意义吗?keep pool默认就是只往热端放数据的啊.

[复制链接]
论坛徽章:
122
现任管理团队成员
日期:2011-05-07 01:45:08
11#
发表于 2010-6-4 16:45 | 只看该作者
... 自己动手测试把
select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
         4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
         7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
         bh.object_name,bh.blocks
from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
         o.name object_name,count(*) BLOCKS
         from obj$ o, x$bh x where o.dataobj# = x.obj
         and x.state !=0 and o.owner# !=0
         group by set_ds,o.name) bh
where ds.set_id >= pd.bp_lo_sid
and ds.set_id <= pd.bp_hi_sid
and pd.bp_size != 0
and ds.addr=bh.set_ds;
这个脚本可以看到 各个buffer pool里面的segment和block数~
大家来设计个试验测试一下,我要下班了~ 来不及了

使用道具 举报

回复
论坛徽章:
27
会员2007贡献徽章
日期:2007-09-26 18:42:102011新春纪念徽章
日期:2011-02-18 11:43:342010广州亚运会纪念徽章:排球
日期:2011-03-03 12:19:332010广州亚运会纪念徽章:篮球
日期:2011-03-10 14:25:06ITPUB十周年纪念徽章
日期:2011-09-27 16:30:47ITPUB十周年纪念徽章
日期:2011-11-01 16:21:15灰彻蛋
日期:2011-12-28 16:56:322012新春纪念徽章
日期:2012-01-04 11:50:44迷宫蛋
日期:2012-03-09 15:14:20蜘蛛蛋
日期:2012-03-26 09:46:32
12#
发表于 2010-6-4 16:50 | 只看该作者
这个我测试了一下 感觉没有 就是先进先出,没有冷端热端的

使用道具 举报

回复
论坛徽章:
122
现任管理团队成员
日期:2011-05-07 01:45:08
13#
发表于 2010-6-4 20:45 | 只看该作者
原帖由 carcase 于 2010-6-4 16:50 发表
这个我测试了一下 感觉没有 就是先进先出,没有冷端热端的


我如果用全表扫描的方式来做实验,的确是你这样的结论,但是如果通过NL连接,使用access table by rowid的方式来把表读入keep pool的话,感觉还是有LRU在工作的

1.设置db_keep_cache_size=4M
2.建立3张表 每张表将近2M,并在这3张表上建立索引,把3张表的storge(buffer_pool keep); test_t1,test_t2,test_t3
3.依次通过NL使用access table by rwoid的方式把test_t1,test_t2读入keep pool
4.等5分钟,再次通过access table by rowid的方式,读取5次表test_t1;此时如果存在LRU,test_t1的块,应该在LRU的热端~
5.通过access table by rowid把test_t3读入keep pool,发现test_t2表的block被挤出keep pool~


SQL> startup force
ORACLE instance started.

Total System Global Area  126950956 bytes
Fixed Size                   454188 bytes
Variable Size              96468992 bytes
Database Buffers           29360128 bytes
Redo Buffers                 667648 bytes
Database mounted.
Database opened.
SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

Elapsed: 00:00:00.00
SQL> select /*+ use_nl(test_t1,txx) */ count(object_type) from mydb.test_t1,mydb.txx where test_t1.object_id=txx.object_id;

COUNT(OBJECT_TYPE)
------------------
             19059

Elapsed: 00:00:00.02
SQL> select /*+ use_nl(test_t2,txx) */ count(object_type) from mydb.test_t2,mydb.txx where test_t2.object_id=txx.object_id;

COUNT(OBJECT_TYPE)
------------------
             19059

Elapsed: 00:00:00.02
SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
KEEP         TEST_T1                                         233
KEEP         TEST_T2                                         233
DEFAULT      TXX                                              11
DEFAULT      T1_IND                                           41
DEFAULT      T2_IND                                           41
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

7 rows selected.

Elapsed: 00:00:00.00
SQL> exec dbms_lock.sleep(300);

PL/SQL procedure successfully completed.

Elapsed: 00:05:00.01
SQL> declare
  2  a number;
  3  i number;
  4  begin
  5  i:=0;
  6  for i in 1..5 loop
  7  select /*+ use_nl(test_t1,txx) */ count(object_type) into a from mydb.test_t1,mydb.txx where test_t1.object_id=txx.object_id;
  8  end loop;
  9  end;
10  /

PL/SQL procedure successfully completed.

Elapsed: 00:00:00.03
SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
KEEP         TEST_T1                                         233
KEEP         TEST_T2                                         233
DEFAULT      TXX                                              11
DEFAULT      T1_IND                                           41
DEFAULT      T2_IND                                           41
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

7 rows selected.

Elapsed: 00:00:00.00
SQL> select /*+ use_nl(test_t1,txx) */ count(object_type) from mydb.test_t3,mydb.txx where test_t3.object_id=txx.object_id;

COUNT(OBJECT_TYPE)
------------------
             19059

Elapsed: 00:00:00.00
SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
KEEP         TEST_T1                                         233
KEEP         TEST_T2                                          33
KEEP         TEST_T3                                         234
DEFAULT      TXX                                              11
DEFAULT      T1_IND                                           41
DEFAULT      T2_IND                                           41
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

8 rows selected.

Elapsed: 00:00:00.00
SQL> select * from v$version;

BANNER
----------------------------------------------------------------
Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
PL/SQL Release 9.2.0.8.0 - Production
CORE    9.2.0.8.0       Production
TNS for 32-bit Windows: Version 9.2.0.8.0 - Production
NLSRTL Version 9.2.0.8.0 - Production

Elapsed: 00:00:00.00


[ 本帖最后由 zergduan 于 2010-6-7 10:16 编辑 ]

使用道具 举报

回复
论坛徽章:
122
现任管理团队成员
日期:2011-05-07 01:45:08
14#
发表于 2010-6-7 11:09 | 只看该作者
顶一下~

使用道具 举报

回复
论坛徽章:
122
现任管理团队成员
日期:2011-05-07 01:45:08
15#
发表于 2010-6-7 11:25 | 只看该作者
测试在KEEP Pool中,cache的作用~ 发现无论nocache/cache test_t1都无法把全表扫描的test_t1留在keep中~

似乎对于全表扫描这样的方式读入到keep中的block,cache都没有作用,似乎是先入先出的方式使用keep pool~


SQL> -- nocache table test_t1
SQL> startup force
ORACLE instance started.

Total System Global Area  126950956 bytes
Fixed Size                   454188 bytes
Variable Size              96468992 bytes
Database Buffers           29360128 bytes
Redo Buffers                 667648 bytes
Database mounted.
Database opened.
SQL> select table_name, blocks, buffer_pool, cache
  2    from dba_tables
  3   where owner = 'MYDB'
  4     and table_name in ('TEST_T1', 'TEST_T2', 'TEST_T3');

TABLE_NAME                         BLOCKS BUFFER_ CACHE
------------------------------ ---------- ------- ----------
TEST_T1                               252 KEEP        N
TEST_T2                               245 KEEP        N
TEST_T3                               245 KEEP        N

SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

SQL> select count(*) from mydb.test_t1;

  COUNT(*)
----------
     19068

SQL> select count(*) from mydb.test_t2;

  COUNT(*)
----------
     19068

SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
KEEP         TEST_T1                                         245
KEEP         TEST_T2                                         234
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

SQL> declare
  2  a number;
  3  i number;
  4  begin
  5  i:=0;
  6  for i in 1..50 loop
  7  select count(*) into a from mydb.test_t1;
  8  end loop;
  9  end;
10  /

PL/SQL procedure successfully completed.

SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
KEEP         TEST_T1                                         245
KEEP         TEST_T2                                         234
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

SQL> select count(*) from mydb.test_t3;

  COUNT(*)
----------
     19068

SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
KEEP         TEST_T1                                          32
KEEP         TEST_T2                                         234
KEEP         TEST_T3                                         234
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

SQL> -- cache table test_t1
SQL> alter table mydb.test_t1 cache;

Table altered.

SQL> startup force
ORACLE instance started.

Total System Global Area  126950956 bytes
Fixed Size                   454188 bytes
Variable Size              96468992 bytes
Database Buffers           29360128 bytes
Redo Buffers                 667648 bytes
Database mounted.
Database opened.
SQL> select table_name, blocks, buffer_pool, cache
  2    from dba_tables
  3   where owner = 'MYDB'
  4     and table_name in ('TEST_T1', 'TEST_T2', 'TEST_T3');

TABLE_NAME                         BLOCKS BUFFER_ CACHE
------------------------------ ---------- ------- ----------
TEST_T1                               252 KEEP        Y
TEST_T2                               245 KEEP        N
TEST_T3                               245 KEEP        N

SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

SQL> select count(*) from mydb.test_t1;

  COUNT(*)
----------
     19068

SQL> select count(*) from mydb.test_t2;

  COUNT(*)
----------
     19068

SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
KEEP         TEST_T1                                         245
KEEP         TEST_T2                                         234
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

SQL> declare
  2  a number;
  3  i number;
  4  begin
  5  i:=0;
  6  for i in 1..50 loop
  7  select count(*) into a from mydb.test_t1;
  8  end loop;
  9  end;
10  /

PL/SQL procedure successfully completed.

SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
KEEP         TEST_T1                                         245
KEEP         TEST_T2                                         234
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

SQL> select count(*) from mydb.test_t3;

  COUNT(*)
----------
     19068

SQL> select decode(pd.bp_id,1,'KEEP',2,'RECYCLE',3,'DEFAULT',
  2           4,'2K SUBCACHE',5,'4K SUBCACHE',6,'8K SUBCACHE',
  3           7,'16K SUBCACHE',8,'32KSUBCACHE','UNKNOWN') subcache,
  4           bh.object_name,bh.blocks
  5  from x$kcbwds ds,x$kcbwbpd pd,(select /*+ use_hash(x) */ set_ds,
  6           o.name object_name,count(*) BLOCKS
  7           from obj$ o, x$bh x where o.dataobj# = x.obj
  8           and x.state !=0 and o.owner# !=0
  9           group by set_ds,o.name) bh
10  where ds.set_id >= pd.bp_lo_sid
11  and ds.set_id <= pd.bp_hi_sid
12  and pd.bp_size != 0
13  and ds.addr=bh.set_ds;

SUBCACHE     OBJECT_NAME                                  BLOCKS
------------ ---------------------------------------- ----------
KEEP         TEST_T1                                          32
KEEP         TEST_T2                                         234
KEEP         TEST_T3                                         234
DEFAULT      AQ$_QUEUES                                        2
DEFAULT      REPCAT$_REPPROP                                   1

使用道具 举报

回复
论坛徽章:
226
BLOG每日发帖之星
日期:2010-02-11 01:01:06紫蛋头
日期:2013-01-12 23:45:222013年新春福章
日期:2013-02-25 14:51:24问答徽章
日期:2013-10-17 18:06:40优秀写手
日期:2013-12-18 09:29:10马上有车
日期:2014-02-19 11:55:14马上有房
日期:2014-02-19 11:55:14马上有钱
日期:2014-02-19 11:55:14马上有对象
日期:2014-02-19 11:55:14马上加薪
日期:2014-02-19 11:55:14
16#
发表于 2010-6-7 16:18 | 只看该作者
最近事情较多,暂时没有时间深究,这是以前的一些测试,希望有所帮助:
KEEP池的CACHE特点(四)
KEEP池的CACHE特点(三)
KEEP池的CACHE特点(二)
KEEP池的CACHE特点(一)

使用道具 举报

回复
招聘 : 数据库管理员
论坛徽章:
20
祖国60周年纪念徽章
日期:2009-10-09 08:28:00数据库板块每日发贴之星
日期:2011-02-20 01:01:01ITPUB季度 技术新星
日期:2011-04-02 10:31:09ITPUB十周年纪念徽章
日期:2011-11-01 16:24:042012新春纪念徽章
日期:2012-01-04 11:54:26玉石琵琶
日期:2012-02-21 15:04:38最佳人气徽章
日期:2012-03-13 17:39:18ITPUB 11周年纪念徽章
日期:2012-10-09 18:09:192013年新春福章
日期:2013-02-25 14:51:242011新春纪念徽章
日期:2011-02-18 11:43:33
17#
发表于 2010-6-7 16:57 | 只看该作者
对于访问很频繁的小表 对其进行cache  意义还是很大的

使用道具 举报

回复
论坛徽章:
122
现任管理团队成员
日期:2011-05-07 01:45:08
18#
发表于 2010-6-7 17:01 | 只看该作者
原帖由 yangtingkun 于 2010-6-7 16:18 发表
最近事情较多,暂时没有时间深究,这是以前的一些测试,希望有所帮助:
KEEP池的CACHE特点(四)
KEEP池的CACHE特点(三)
KEEP池的CACHE特点(二)
KEEP池的CACHE特点(一)


非常感谢~ 我没某找到第四部分,现在看完整了,的确,我的测试和您的第四部分的结论相符

使用道具 举报

回复
论坛徽章:
2
2009日食纪念
日期:2009-07-22 09:30:00ITPUB8周年纪念徽章
日期:2009-09-27 10:21:21
19#
 楼主| 发表于 2010-6-8 09:20 | 只看该作者
谢谢各位前辈高人尤其是zergduan的指点, 得到的不仅是这个问题的答案, 更重要的是精神.

谢谢.

使用道具 举报

回复
论坛徽章:
10
ITPUB元老
日期:2005-02-28 12:57:002010广州亚运会纪念徽章:保龄球
日期:2011-01-30 11:57:03祖国60周年纪念徽章
日期:2009-10-09 08:28:00参与2009年中国云计算大会纪念
日期:2009-06-05 10:02:28ITPUB北京2009年会纪念徽章
日期:2009-02-09 11:42:452009新春纪念徽章
日期:2009-01-04 14:52:28生肖徽章2007版:鼠
日期:2008-01-02 17:35:53会员2006贡献徽章
日期:2006-04-17 13:46:34授权会员
日期:2005-10-30 17:05:33ITPUB十周年纪念徽章
日期:2011-11-01 16:19:41
20#
发表于 2010-6-10 18:27 | 只看该作者
AskTom文章摘抄:

In fact, the three pools manage blocks in a mostly identical fashion; they do not have radically different algorithms for aging or caching blocks.

http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1590999000346302363

使用道具 举报

回复

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

TOP技术积分榜 社区积分榜 徽章 团队 统计 知识索引树 积分竞拍 文本模式 帮助
  ITPUB首页 | ITPUB论坛 | 数据库技术 | 企业信息化 | 开发技术 | 微软技术 | 软件工程与项目管理 | IBM技术园地 | 行业纵向讨论 | IT招聘 | IT文档
  ChinaUnix | ChinaUnix博客 | ChinaUnix论坛
CopyRight 1999-2011 itpub.net All Right Reserved. 北京盛拓优讯信息技术有限公司版权所有 联系我们 未成年人举报专区 
京ICP备16024965号-8  北京市公安局海淀分局网监中心备案编号:11010802021510 广播电视节目制作经营许可证:编号(京)字第1149号
  
快速回复 返回顶部 返回列表