PostSharp.ILCachingSynchronizing Local In-Memory Caches for Multiple Servers
Open sandboxFocusImprove this doc

Synchronizing Local In-Memory Caches for Multiple Servers

Caching in distributed applications can be a tricky problem. When there are several instances of an application running simultaneously (typically web sites or web services deployed into the cloud or web farms), you have to make sure that the cache is properly invalidated for all instances of the application.

A typical answer to this issue is to use a centralized cache server (or a cluster of cache servers) that solves this problem for you. For instance, you can use a Redis server or a Redis cluster. However, running a cache server, even more a cache cluster, comes with a cost, and it does not always pay off for medium applications such as the website of a small business.

An alternative solution to the problem of distributed caching is to have a local in-memory cache in each instance in the application. Instead of using a shared distributed cache, each application instance caches its own data into its own local cache. However, when one instance of the application modifies a piece of data, it needs to make sure that all instances remove the relevant items from their local cache. This is called distributed cache invalidation. It can be achieved easily and cheaply with a publish/subscribe (Pub/Sub) message bus such as Azure Service Bus, much less expensive than a cache cluster.

PostSharp allows you to easily add pub/sub cache invalidation to your existing PostSharp caching.

The principal inconvenience of pub/sub invalidation is that there is some latency in the invalidation mechanism, i.e. different instances of the application can see different data during a few dozens of milliseconds.

Using Azure Service Bus pub/sub for distributed invalidation

Warning

AzureCacheInvalidator and AzureCacheInvalidator2 are deprecated since PostSharp 2024.0. They are replaced by AzureServiceBusCacheInvalidator.

To use Azure Service Bus pub/sub for distributed invalidation:

  1. Add in-memory local caching to your application as described in Using In-Memory Cache.

  2. Add a reference to the PostSharp.Patterns.Caching.Azure NuGet package.

  3. Go to a Microsoft Azure portal, open the Service Bus panel and create a new Topic. Choose a small value for the time-to-live setting, for instance 30 seconds. See Microsoft Azure website for details.

  4. In the Microsoft Azure portal, create a Shared access policy and include the Manage right. This policy will be used by your application.

  5. Go to the properties of the newly created policy and copy the primary or secondary connection string to the clipboard.

  6. Go back to your source code and find the place where the MemoryCachingBackend is initialized.

  7. Create an instance of AzureServiceBusCacheInvalidatorOptions class using the connection string to the shared access policy you just created. You also need to either specify the Service Bus topic subscription name or additional credentials that would allow the code to create new topic subscriptions. See below.

    If you choose automatic topic management, you will need to pass a client ID, client secret and tenant ID to each client. These can be the same for all clients. You can create these credentials in the Microsoft Azure portal in the section Azure Active Directory.

  8. Create an instance of the AzureServiceBusCacheInvalidator class using the Create(CachingBackend, AzureServiceBusCacheInvalidatorOptions) factory method passing the existing instance of the MemoryCachingBackend and AzureServiceBusCacheInvalidator. Assign the new AzureServiceBusCacheInvalidator to the DefaultBackend property.

Topic creation strategies

A topic subscription can connect only one client to the Azure server at a time. For example, if you start your application on two different computers but use the same Service Bus topic subscription for both, cache invalidation will not work. It is necessary to have two topic subscriptions and assign one to each application instance.

There are two ways to create topic subscriptions: automatic, and manual.

  • Automatic topic management means that PostSharp will automatically create a topic subscription for each instance of the cache invalidator. This topic subscription will have an auto-generated name and will be set to auto-expire after a few minutes after the connection ends. In .NET Framework, this strategy is the only one that can be used and it does not require extra permissions. In .NET Core and .NET Standard, this strategy requires your application to have management permissions to Azure Service Bus.

  • Manual topic management means that you have to create the topic subscriptions yourself using the Azure portal or another management API. In this case, you need to pass the topic subscription name to AzureServiceBusCacheInvalidatorOptions, but your Azure credentials do not need the management permission.

You can select the strategy by invoking the corresponding constructor of the AzureServiceBusCacheInvalidatorOptions class.

Using Redis pub/sub for distributed invalidation

If you are already using Redis for PostSharp caching, it is useless to add another layer of invalidation because this is already taken care of by the RedisCachingBackend class. However, if you already have a Redis cluster but you don't want to use it for caching, you can still use it for cache invalidation. An example situation is when the latency of your Redis server is too high for caching but sufficient for cache invalidation.

To use Redis Pub/Sub for distributed invalidation:

  1. Add in-memory local caching to your application as described in Using In-Memory Cache.

  2. Create an instance of StackExchange.Redis.ConnectionMultiplexer. See Redis Pub/Sub documentation for details.

  3. Create and configure an instance of RedisCacheInvalidatorOptions class.

  4. Create an instance of the RedisCacheInvalidator class using the Create(CachingBackend, IConnectionMultiplexer, RedisCacheInvalidatorOptions) factory method passing your instance of MemoryCachingBackend and RedisCacheInvalidatorOptions. Assign the instance to the DefaultBackend property.

Example

This example shows how to initialize an in-memory caching backend to let it invalidate and be invalidated using Redis Pub/Sub.

var localCache = new MemoryCachingBackend();

string connectionConfiguration = "localhost";
string channelName = "myCahnnel";

ConnectionMultiplexer connection = ConnectionMultiplexer.Connect( connectionConfiguration );

var redisCacheInvalidatorOptions = new RedisCacheInvalidatorOptions
                                    {
                                        ChannelName = channelName
                                    };

CachingServices.DefaultBackend = RedisCacheInvalidator.Create( localCache, connection, redisCacheInvalidatorOptions );