- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在执行以下操作以将列表存储在 IMemoryCache 中:
_memoryCache.Set("PriceList", horsepricelist);
并访问它/返回数据:
public PriceResponse.PriceForEntry GetPriceListEntry(DateTime meetingDate, int courseId, int raceNumber, string horseCode)
{
var pricelist = _memoryCache.Get("PriceList");
var dateprefix = "/Date(" + meetingDate.Ticks.ToString() + ")/";
return ((IEnumerable)pricelist).Cast<PriceResponse.PriceForEntry>().FirstOrDefault(x => x.meetingDate == dateprefix &&
x.courseId == courseId &&
x.raceNumber == raceNumber &&
x.horseCode == horseCode);
}
返回没有马代码的列表:
public List<PriceResponse.PriceForEntry> GetPriceList(DateTime meetingDate, int courseId, int raceNumber, bool? ShowAll)
{
var pricelist = _memoryCache.Get<List<PriceResponse.PriceForEntry>>("PriceList");
var dateprefix = "/Date(" + meetingDate.Ticks.ToString() + ")/";
return pricelist.Where(x => x.meetingDate == dateprefix && x.courseId == courseId && x.raceNumber == raceNumber).ToList();
}
保存在缓存中的列表的 View 模型结构:
public class PriceResponse
{
public class PriceForEntry
{
public string meetingDate { get; set; }
public int courseId { get; set; }
public int raceNumber { get; set; }
public string horseCode { get; set; }
public List<Bookmakerprice> bookmakerPrices { get; set; }
}
public class Bookmakerprice
{
public int bookmakerId { get; set; }
public string bookmakerName { get; set; }
public string selectionId { get; set; }
public string fractionalOdds { get; set; }
public float decimalOdds { get; set; }
public string bookmakerRaceid { get; set; } //This is the event Id.
public string bookmakerMarketId { get; set; } //Market Id.
}
}
有没有更好的方法来获取值,例如在缓存中设置各种键和值来获取条目,而不是将对象转换回列表并循环遍历?
最佳答案
检查一下。这个和其他一些助手在这个 github repository 中.
using System.Web.Caching;
namespace System.Web
{
public static class CacheExtensions
{
static object _sync = new object();
/// <summary>
/// Executes a method and stores the result in cache using the given cache key. If the data already exists in cache, it returns the data
/// and doesn't execute the method. Thread safe, although the method parameter isn't guaranteed to be thread safe.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="cache">Cache from HttpContext. If null, method is executed directly.</param>
/// <param name="cacheKey">Each method has it's own isolated set of cache items, so cacheKeys won't overlap across methods.</param>
/// <param name="method"></param>
/// <param name="expirationSeconds">Lifetime of cache items, in seconds</param>
/// <returns></returns>
public static T Data<T>(this Cache cache, string cacheKey, int expirationSeconds, Func<T> method)
{
var data = cache == null ? default(T) : (T)cache[cacheKey];
if (data == null)
{
data = method();
if (expirationSeconds > 0 && data != null)
{
lock (_sync)
{
cache.Insert(cacheKey, data, null, DateTime.Now.AddSeconds(expirationSeconds), Cache.NoSlidingExpiration);
}
}
}
return data;
}
}
}
关于c# - 在 IMemoryCache 中存储和检索列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56217293/
我有一个 CacheService使用 GetOrCreateAsync基于键创建缓存。我正在缓存一个照片实体,它有一个 byte[]属性(property)。 这可以很好地缓存并按预期检索。但是,如
我正在尝试将我的 .Net 框架应用程序迁移到 .Net Core,在此过程中,我想将我的内存缓存从 System.Runtime.Caching/MemoryCache至Microsoft.Exte
我创建了一个全新的 ASP.NET Core Web API 项目。这是 Startup.cs 中的 ConfigureServices: public void ConfigureServi
我对 ASP.Net Core、C#、OOP、Javascript ……基本上是我目前使用的所有内容的新手。过去几个月我一直在阅读和学习以开始一个新的开发项目。总而言之,我正在稳步前进,但我遇到了 I
我正在使用 asp net core 1.0 和 xunit。 我正在尝试为一些使用 IMemoryCache 的代码编写单元测试。但是,每当我尝试在 IMemoryCache 中设置一个值时,我都会
我正在尝试模拟 IMemoryCache最小起订量。我收到此错误: An exception of type 'System.NotSupportedException' occurred in Mo
我目前正在执行以下操作以将列表存储在 IMemoryCache 中: _memoryCache.Set("PriceList", horsepricelist); 并访问它/返回数据: public
我正在创建一个 .net core 3.1 Worker Service 应用程序。我有一个使用 IMemoryCache 接口(interface)进行依赖注入(inject)的类。我有以下类的构造
我正在使用 IMemoryCache缓存从身份服务器检索到的 token 。 过去我用过 GetOrCreateAsync Microsoft.Extensions.Caching.Abstracti
我有一个从 Visual Studio 2015 Community Edition 创建的 ASP.NET Web 应用程序。 .NET Framework 是 4.6.1。 我不知道我的 Web
我一直在使用类似于示例 1 的操作来为我的 .NET Core API 异步缓存 json 结果。 MemoryCache 是 IMemoryCache 的实例。 示例 1(按预期工作): [Http
我正在尝试使用 Microsoft.Extensions.Caching.Memory.IMemoryCache 接口(interface)/类。 我需要向缓存中添加一个新项目,并确保我不会覆盖任何其
我有一个带有 API 的 ASP.NET Core MVC 项目。 然后我在名为 Infrastructure. 的同一个解决方案中有一个类库。 我的 API 在类库基础结构中调用存储库方法,在类 U
我们正在使用 .NET Core 3.1 和 Microsoft.Extensions.Caching.Memory.IMemoryCache (v3.1.24) 及其实现 Microsoft.Ext
.Net Core 为两个接口(interface)( MemoryCache 和 DistributedMemoryCache )提供内存实现,但假设我们有一个可用的 IDistributedCac
我知道 IMemoryCache.Set 是一个扩展方法,所以它不能被模拟。人们已经为这种情况提供了解决方法,例如 NKosi here 的解决方法。 .我想知道如何为我的 MemoryCache 返
我正在寻找一种方法来包装为某些数据调用远程 WCF 服务的服务。例如,这样的服务可能看起来像这样 public interface IAsyncSvc { Task GetData(int k
我正在编写一个简单的测试用例来测试我的 Controller 在调用我的服务之前调用缓存。我正在使用 xUnit 和 Moq 来完成这项任务。 我遇到了一个问题,因为 GetOrCreateAsync
我向 IMemoryCache 添加一个值 _cache.Set("Key", "Value", DateTimeOffset.UtcNow); 我想通过其他方法获取这个key的绝对过期值。 或者 我
我正在使用 IMemoryCache 将数据存储在缓存中...但它会不断向 SQL Server 发送 sql 调用,即使在缓存存在的情况下执行不会运行该代码。 我的查找服务 public class
我是一名优秀的程序员,十分优秀!