在Silverlight中使用企业库缓存应用程序块

时间:2011-10-20 07:10:17

标签: silverlight enterprise-library caching-application-block

我已经下载了模式&练习Silverlight Integration Pack在我的Silverlight应用程序中使用缓存(缓存应用程序块),但我尝试过并且没有让它工作。 我没有找到任何有用的例子 - 有没有人有例子?只需几行代码即可显示简单用法? 我需要使用统一吗?

谢谢!

我使用了我从企业库配置中获得的默认配置 - 我导出为XAML的工具:

<el:CachingSettings DefaultCache="In-Memory Cache" x:Key="cachingSilverlightConfiguration">
  <el:CachingSettings.Caches>
    <el:InMemoryCacheData ExpirationPollingInterval="00:02:00" Name="In-Memory Cache" />
  </el:CachingSettings.Caches>
</el:CachingSettings>

当我尝试使用以下代码访问它时:

ObjectCache cache = EnterpriseLibraryContainer.Current.GetInstance<ObjectCache>("In-Memory Cache");

然后,我得到一个例外:

{System.IO.FileNotFoundException: The system cannot find the file specified. File name: 'System.Xml.Linq, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' ...

2 个答案:

答案 0 :(得分:1)

感谢Entlib支持部门的Randy Levy,我得到了the answer I needed, there

看起来你还没有配置容器。如果您不想调用服务器来检索配置,则需要嵌入并加载配置。

string stringWithXAMLConfiguration = @"<?xml version=""1.0"" encoding=""utf-8""?>
<el:ConfigurationDictionary xmlns=""http://schemas.microsoft.com/winfx/2006/xaml/presentation"" 
                xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml"" 
                xmlns:el=""http://schemas.microsoft.com/practices/2011/entlib"">
<el:CachingSettings DefaultCache=""In-Memory Cache"" x:Key=""cachingSilverlightConfiguration"">
    <el:CachingSettings.Caches>
        <el:InMemoryCacheData ExpirationPollingInterval=""00:02:00"" Name=""In-Memory Cache"" />
        <el:IsolatedStorageCacheData MaxSizeInKilobytes=""5120"" PercentOfQuotaUsedBeforeScavenging=""50"" PercentOfQuotaUsedAfterScavenging=""20"" ExpirationPollingInterval=""00:01:00"" Name=""Isolated Storage Cache"" />
    </el:CachingSettings.Caches>
</el:CachingSettings>
</el:ConfigurationDictionary>";

var configDictionary = (IDictionary)XamlReader.Load(stringWithXAMLConfiguration);
var configSource = DictionaryConfigurationSource.FromDictionary(configDictionary);
EnterpriseLibraryContainer.Current = EnterpriseLibraryContainer.CreateDefaultContainer(configSource);

或者,如果您不希望在代码中包含字符串但更喜欢XAML文件,那么请确保XAML文件(例如cacheConfig.xaml)构建操作是嵌入式资源然后您可以使用以下代码:

string xaml;
using (Stream s = this.GetType().Assembly.GetManifestResourceStream("SilverlightApplicationCache.cacheConfig.xaml"))
    using (StreamReader sr = new StreamReader(s))
        xaml = sr.ReadToEnd();

var configDictionary = (IDictionary)XamlReader.Load(xaml);
var configSource = DictionaryConfigurationSource.FromDictionary(configDictionary);
EnterpriseLibraryContainer.Current = EnterpriseLibraryContainer.CreateDefaultContainer(configSource);
上面的

SilverlightApplicationCache是XAML文件的命名空间(例如,项目的默认命名空间)。

答案 1 :(得分:0)