-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #232 from mikhail-syvachenko-syzygy/feature/add-op…
…timizely-setup feat: enable inner caching replacement for DbLocalization Optimizely registration with new DbLocalizationConfigurationContext
- Loading branch information
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/DbLocalizationProvider.EPiServer/DbLocalizationConfigurationContext.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using DbLocalizationProvider.Cache; | ||
|
||
namespace DbLocalizationProvider.EPiServer; | ||
|
||
/// <summary> | ||
/// Configuration context for DbLocalizationProvider.EPiServer. | ||
/// </summary> | ||
public class DbLocalizationConfigurationContext | ||
{ | ||
/// <summary> | ||
/// Allows to override internal cache implementation, if problems with default EPiServer implementation arise. | ||
/// </summary> | ||
public ICache InnerCache { get; set; } = new EPiServerCache(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters