設定のようです。 http://www.devx.com/dotnet/Article/31158/0/page/2
外部設定ファイルを使用すると、実際にはその構文を理解するだけで簡単になります。例:Web.configファイルで
:
cachingconfiguration.configで
<cachingConfiguration configSource="cachingconfiguration.config" />
:
<?xml version="1.0" encoding="utf-8"?>
<cachingConfiguration defaultCacheManager="Default Cache Manager">
<backingStores>
<add name="inMemory" type="Microsoft.Practices.EnterpriseLibrary.Caching.BackingStoreImplementations.NullBackingStore, Microsoft.Practices.EnterpriseLibrary.Caching" />
</backingStores>
<cacheManagers>
<add name="Default Cache Manager" expirationPollFrequencyInSeconds = "60" maximumElementsInCacheBeforeScavenging ="50" numberToRemoveWhenScavenging="10" backingStoreName="inMemory" />
</cacheManagers>
</cachingConfiguration>
がうまくいけば、これは誰かに役立ちます!