Creating a local configuration in the presence of a global configuration

When you create a local configuration of a named cache in the presence of global configurations, all pool entries are replicated for local configuration. For example, you may have the following global configuration:

[Named Cache: tempdb_cache]
	cache size = 100M
	cache status = mixed cahe
	cache replacement policy = DEFAULT
	local cache partition number = DEFAULT

[2K I/O Buffer Pool]
	pool size = DEFAULT
	wash size = DEFAULT
	local async prefetch limit = DEFAULT

[4K I/O Buffer Pool]
pool size = 25.0000m
wash size = DEFAULT
local async prefetch limit = DEFAULT

If you create a local configuration with size 120M on this global configuration, the cache section of the configuration file resembles the following:

[Named Cache:tempdb_cache]
	cache size = 100M
	cache status = mixed cache
	cache replacement policy = DEFAULT
	local cache partition number = DEFAULT
	[Instance:SALES_INSTANCE]
	cache size = 120M
	cache status = mixed cache
	cache replacement policy = DEFAULT
	local cache partition number = DEFAULT
[2K I/O Buffer Pool]
	pool size = DEFAULT
	wash size = DEFAULT
	local async prefetch limit = DEFAULT
	[Instance:SALES_INSTANCE]
	pool size = DEFAULT
	wash size = DEFAULT
	local async prefetch limit = DEFAULT[4K I/O Buffer Pool]
	pool size = 25.0000m
	wash size = DEFAULT
	local async prefetch limit = DEFAULT
	[Instance:SALES_INSTANCE]
	pool size = 25.0000m
	wash size = DEFAULT
	local async prefetch limit = DEFAULT