Skip to content

Commit

Permalink
Fix: Update EnyimMemcachedCore to 2.5.4 (#406)
Browse files Browse the repository at this point in the history
Co-authored-by: SOTI\njain <nipun.jain@soti.net>
  • Loading branch information
jainnipun and SOTI\njain authored Oct 13, 2022
1 parent c5ae208 commit c32dae1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public EasyCachingMemcachedClientConfiguration(
var options = optionsAccessor.DBConfig;

ConfigureServers(options);
UseSslStream = options.UseSslStream;

SocketPool = new SocketPoolConfiguration();
if (options.SocketPool != null)
Expand Down Expand Up @@ -182,6 +183,11 @@ private void ConfigureServers(EasyCachingMemcachedClientOptions options)
/// </summary>
public IAuthenticationConfiguration Authentication { get; private set; }

/// <summary>
/// Gets the SSL Stream support.
/// </summary>
public bool UseSslStream { get; private set; }

/// <summary>
/// Gets or sets the <see cref="T:Enyim.Caching.Memcached.IMemcachedKeyTransformer"/> which will be used to convert item keys for Memcached.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/EasyCaching.Memcached/EasyCaching.Memcached.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
<ProjectReference Include="..\EasyCaching.Core\EasyCaching.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EnyimMemcachedCore" Version="2.5.3" />
<PackageReference Include="EnyimMemcachedCore" Version="2.5.4" />
</ItemGroup>
</Project>

0 comments on commit c32dae1

Please sign in to comment.