You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/*----------------------------------------------------------------
Copyright (C) 2023 Senparc
文件名: MemcachedServiceCollectionExtensions.cs
文件功能描述: Memcached 依赖注入设置。
创建标识: Senparc - 20180222
----------------------------------------------------------------*/
#if !NET462
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
using Enyim.Caching.Configuration ;
using Microsoft.Extensions.DependencyInjection ;
using Senparc.Weixin.Cache.Memcached ;
namespace Microsoft.Extensions.DependencyInjection
{
public static class MemcachedServiceCollectionExtensions
{
/// <summary>
/// .NET Core下设置依赖注入( 暂时请用CO2NET对应 AddSenparcMemcached 方法)
/// </summary>
/// <param name="services"></param>
/// <param name="setupAction"></param>
/// <returns></returns>
public static IServiceCollection AddWeixinMemcached ( this IServiceCollection services , Action < MemcachedClientOptions > setupAction )
{
return services ;
//services.AddSingleton<MemcachedObjectCacheStrategy, MemcachedObjectCacheStrategy>();
//services.AddSingleton<MemcachedContainerStrategy, MemcachedContainerStrategy>();
//return services.AddEnyimMemcached(setupAction);
}
}
}
# endif