爆肝,重构框架,你懂得

This commit is contained in:
chenchun
2023-01-01 23:06:11 +08:00
parent dbe020dc94
commit b9384afd5d
276 changed files with 5205 additions and 3281 deletions

View File

@@ -11,14 +11,14 @@ using Yi.Framework.Common.IOCOptions;
using CSRedis;
using static CSRedis.CSRedisClient;
namespace Yi.Framework.Core
namespace Yi.Framework.Core.Cache
{
public abstract class CacheInvoker
{
public virtual bool Exits(string key)
public virtual bool Exits(string key)
{
throw new NotImplementedException();
throw new NotImplementedException();
}
public virtual T Get<T>(string key)
{
@@ -147,7 +147,7 @@ namespace Yi.Framework.Core
public virtual string[] Keys(string pattern)
{
throw new NotImplementedException();
throw new NotImplementedException();
}
}
}