Falcon.SugarApi/Falcon.SugarApi/Cache
2022-04-29 15:46:20 +08:00
..
DistributedCacheEntryOptionsWallPaper.cs 提供缓冲支持,目前支持内存缓冲器和redis缓冲器 2022-04-21 16:59:18 +08:00
IServiceCollectionExtend.cs 实现ICacheService接口,该接口支持sqlsugar数据缓冲。 2022-04-29 15:46:20 +08:00
ISugarCache.cs 提供缓冲支持,目前支持内存缓冲器和redis缓冲器 2022-04-21 16:59:18 +08:00
ISugarCacheAsync.cs 提供缓冲支持,目前支持内存缓冲器和redis缓冲器 2022-04-21 16:59:18 +08:00
Readme.md 提供缓冲支持,目前支持内存缓冲器和redis缓冲器 2022-04-21 16:59:18 +08:00
SugarCache.cs 提供缓冲支持,目前支持内存缓冲器和redis缓冲器 2022-04-21 16:59:18 +08:00
SugarCacheService.cs 实现ICacheService接口,该接口支持sqlsugar数据缓冲。 2022-04-29 15:46:20 +08:00

缓冲器

使用 IServiceCollection.AddSugarRedisCacheIServiceCollection.AddSugarMemoryCache 注册缓冲器即可 在使用时注入 ISugarCache同步接口 或 ISugarCacheAsync异步接口 接口的GetSet方法分别对应获取和保存缓冲值。

在可能的情况下尽量使用异步方法,异步效率远远高于同步方法。