TimesTen 应用层数据库缓存学习:16. Aging策略与AWT缓存组

Posted dingdingfish

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TimesTen 应用层数据库缓存学习:16. Aging策略与AWT缓存组相关的知识,希望对你有一定的参考价值。

本文讨论如果一个Cache Table设定了Aging策略,那么Aging导致的缓存中数据的删除是否会影响到Oracle数据库?

如果是只读缓存组,当然是不会影响到Oracle的。如果是AWT缓存组,答案也是不会影响,即Aging导致的数据删除不会传播到Oracle,下面通过实验验证一下。

之前的建立缓存组的准备工作此处略过。

在Oracle中建立源表(schema 用户 - tthr):

create table t1(id int not null, t timestamp not null, primary key(id));

启动cache agent。

建立AWT缓存组(cache管理用户 - cacheadm),定义Aging策略为基于TimeStamp,生命周期为10秒,检查周期为5秒

CREATE DYNAMIC ASYNCHRONOUS WRITETHROUGH CACHE GROUP "AGEAWT" 
 FROM
  "TTHR"."T1" (
    "ID" NUMBER(38)   NOT NULL,
    "T"  TIMESTAMP(6) NOT NULL,
    PRIMARY KEY("ID")
  )
  AGING USE T LIFETIME 10 seconds CYCLE 5 seconds ON

  start rep agent

在TimesTen中插入数据

$ ttisql "dsn=cachedb1_1122;uid=tthr;pwd=timesten"

Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved.
Type ? or "help" for help, type "exit" to quit ttIsql.



connect "dsn=cachedb1_1122;uid=tthr;pwd=timesten";
Connection successful: DSN=cachedb1_1122;UID=tthr;DataStore=/home/oracle/TimesTen/tt1122/info/DemoDataStore/cachedb1_1122;DatabaseCharacterSet=AL32UTF8;ConnectionCharacterSet=US7ASCII;DRIVER=/home/oracle/TimesTen/tt1122/lib/libtten.so;PermSize=40;TempSize=32;TypeMode=0;OracleNetServiceName=ttorcl;
(Default setting AutoCommit=1)
Command> select * from t1;
0 rows found.
Command> insert into t1 values(1, sysdate);
1 row inserted.
Command> select * from t1;
< 1, 2016-05-30 01:12:49.000000 >
1 row found.
Command> select * from t1; <- aging生效了
0 rows found.
Command> insert into t1 values(2, sysdate);
1 row inserted.
Command> select * from t1;
< 2, 2016-05-30 01:13:50.000000 >
1 row found.
Command> select * from t1; <- aging生效了
0 rows found.
Command> 

在Oracle中观察数据变化, 可以看到数据不断增加,没有因为Aging而被删除

$ sqlplus tthr/[email protected]

SQL*Plus: Release 11.2.0.2.0 Production on Mon May 30 01:12:27 2016

Copyright (c) 1982, 2010, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> select * from t1;

no rows selected

SQL> select * from t1;

no rows selected

SQL> /

        ID
----------
T
---------------------------------------------------------------------------
         1
30-MAY-16 01.12.49.000000 AM


SQL> /

        ID
----------
T
---------------------------------------------------------------------------
         1
30-MAY-16 01.12.49.000000 AM

         2
30-MAY-16 01.13.50.000000 AM

以上是关于TimesTen 应用层数据库缓存学习:16. Aging策略与AWT缓存组的主要内容,如果未能解决你的问题,请参考以下文章

TimesTen 应用层数据库缓存学习:18. 利用TimesTen实现Sharding或数据分区

TimesTen 应用层数据库缓存学习:17. 全局数据缓存(cache grid)的高可用性

TimesTen 应用层数据库缓存学习:19. 理解AWT缓存组的三种模式

TimesTen 数据库复制学习:11. ASP带缓存组复制的几种固定架构模式

TimesTen 数据库复制学习:8. 管理Active Standby Pair(带缓存组)

开发者和DBA-不通过DSN连接TimesTen