For production scenarios we recommend a cache level of at least
Basic
to acheive maximum performance. This cache level will hold all meta-data in cache and avoid unneccesary roundtrips to the database.
All of the core services have built in support for caching. If enabled, all models are stored in cache after model transformation and invalidated from cache when the model is updated or deleted. The models are stored both as their CLR type and as a lighter info object (PageInfo
, PostInfo
) that can be used for listings. Please note that dynamic models are not cached and is therefor not suited for usage in high performance scenarios.
To enable the repository cache, simply register a cache service that implements Piranha.ICache
in your Startup.cs
. The following cache enables the standard memory cache:
using Piranha;
public void ConfigureServices(IServiceCollection services)
{
...
services.AddPiranhaMemoryCache();
...
}
This will cause the cache to be injected to all services when they are created. Most cache services should be registered as Singletons
as it is desirable that all instances reference the same cache object.
By default Piranha caches everything when a Cache Service is registered, but you can configure the cache level by setting the property Piranha.App.CacheLevel
. You can choose between the following levels:
Piranha.App.CacheLevel = Piranha.Caching.CacheLevel.None;
Nothing is cached even if a cache service is registered.
Piranha.App.CacheLevel = Piranha.Caching.CacheLevel.Minimal;
The following data is kept in cache:
Piranha.App.CacheLevel = Piranha.Caching.CacheLevel.Basic;
The following data is kept in cache:
Piranha.App.CacheLevel = Piranha.Caching.CacheLevel.Full;
Everything is kept in cache, including all Blocks and Fields for Content Types. This is the default cache level.