OK. My first real work with WCF is on my current project, where I landed a few weeks ago. It follows the typical SOA architecture: a web client accesses WCF services that do all the real work. The web ...
Web developers looking for a performance boost in ASP.NET 7 Web API projects can pick some low-hanging fruit by using caching. Caching is used to store frequently used data or information in local ...
Before we can do any caching, we need something to cache. Here's a simple DataProvider class that has a couple of expensive operations in its interface: /** * @author adrian at aspectprogrammer.org * ...