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.
1.4 KiB
1.4 KiB
LINGYUN.Abp.CachingManagement.Application
Implementation of the cache management application service module.
Features
- Implements the
ICacheAppServiceinterface, providing basic cache management functions:- Get cache key list
- Get cache value
- Set cache value
- Refresh cache
- Delete cache
Permissions
- AbpCachingManagement.Cache: Cache management
- AbpCachingManagement.Cache.Refresh: Refresh cache
- AbpCachingManagement.Cache.Delete: Delete cache
- AbpCachingManagement.Cache.ManageValue: Manage cache value
Installation
abp add-module LINGYUN.Abp.CachingManagement
Configuration and Usage
-
First, you need to install the corresponding cache implementation module, for example: LINGYUN.Abp.CachingManagement.StackExchangeRedis
-
Add the following code in the
ConfigureServicesmethod of your module:
Configure<AbpAutoMapperOptions>(options =>
{
options.AddProfile<AbpCachingManagementApplicationAutoMapperProfile>(validate: true);
});
More
For more information, please refer to the following resources: