About 1,420,000 results
Open links in new tab
  1. Caching in C#/.Net - Stack Overflow

    Mar 22, 2018 · If you mean caching in a windows form app, it depends on what you're trying to do, and where you're trying to cache the data. We've implemented a cache behind a Webservice …

  2. c# - Looking for a very simple Cache example - Stack Overflow

    Jan 17, 2017 · System.Runtime.Caching.MemoryCache - this class can be constructed in user code. It has the different interface and more features like update\remove callbacks, regions, …

  3. c# - Caching in .Net Windows application - Stack Overflow

    Jan 25, 2013 · Per MSF "Caching Application Block functionality is built into .NET Framework 4.0; therefore the Enterprise Library Caching Application Block will be deprecated in releases after …

  4. c# - How to use caching in ASP.NET Web API? - Stack Overflow

    As already mentioned by OakNinja, output caching via [OutputCache] attributes is currently not supported by the ASP.NET Web API. However, there are a few open source implementations …

  5. c# - .NET 4 Caching Support - Stack Overflow

    May 12, 2011 · Caching in C#/.Net. 5. Caching in C# without System.Web. 6. Simple C# ASP.NET Cache Implementation. 3. How ...

  6. c# - String caching. Memory optimization and re-use - Stack …

    May 19, 2013 · See also String.Intern and Optimizing C# String Performance (C Calvert) If a new string is created with code like (String goober1 = "foo"; String goober2 = "foo";) shown in lines …

  7. Is there anyway to cache function/method in C# - Stack Overflow

    Feb 8, 2011 · You could pass the function as expression, generate a caching key containing class, method and parameter information and invoke the expression if not found in your …

  8. How to use MemoryCache in C# Core Console app?

    Here is the complete console application code in .NET Core. using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Primitives; using System; …

  9. c# - Caching best practices - Single object or multiple entries ...

    Jul 20, 2009 · Approaches to caching large number of objects (ASP.NET cache vs static objects & caching objects individually vs as dictionary) 3 .Net System.Runtime.Caching.MemoryCache - …

  10. c# - Caching in WCF? - Stack Overflow

    Apr 6, 2015 · Any caching solution should address two basic problems. 1) Storage of cache items and retrieval. 2) Cache invalidation. Since Http caching is a well known one I am not going to …

Refresh