Skip to content

Commit

Permalink
Add IMemoryCacheClient interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ejsmith committed Feb 20, 2024
1 parent f23bdcc commit 680103c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/Foundatio/Caching/IMemoryCacheClient.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
namespace Foundatio.Caching;

public interface IMemoryCacheClient : ICacheClient
{
}
2 changes: 1 addition & 1 deletion src/Foundatio/Caching/InMemoryCacheClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace Foundatio.Caching;

public class InMemoryCacheClient : ICacheClient
public class InMemoryCacheClient : IMemoryCacheClient
{
private readonly ConcurrentDictionary<string, CacheEntry> _memory;
private bool _shouldClone;
Expand Down

0 comments on commit 680103c

Please sign in to comment.