眼鏡網(wǎng)站建設(shè)/網(wǎng)絡(luò)銷(xiāo)售工資一般多少
數(shù)據(jù)庫(kù)一般都配置數(shù)據(jù)高速緩存,并且可以高速緩存中按頁(yè)大小分不同的緩沖池。
Oracle:
db_cache_size是指db_block_size對(duì)應(yīng)的緩沖池,也可以指定非db_block_size的緩沖池,一般也都會(huì)再配置一個(gè)32K的緩沖池,兩個(gè)緩沖池加起來(lái)就是數(shù)據(jù)庫(kù)的高速緩存。
DB_ nK_CACHE_SIZE (n = 2, 4, 8, 16, 32)
alter system set DB_32K_CACHE_SIZE=64M scope=spfile;
Sybase:
配置高速緩存
sp_cacheconfig “default data cache”, 64M
配置不同的緩沖池:
sp_poolconfig “safe data cache”, “32M”, “16K”
?