# LINGYUN.Abp.CachingManagement.Application Implementation of the cache management application service module. ## Features * Implements the `ICacheAppService` interface, 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 ```bash abp add-module LINGYUN.Abp.CachingManagement ``` ## Configuration and Usage 1. First, you need to install the corresponding cache implementation module, for example: [LINGYUN.Abp.CachingManagement.StackExchangeRedis](../LINGYUN.Abp.CachingManagement.StackExchangeRedis/README.EN.md) 2. Add the following code in the `ConfigureServices` method of your module: ```csharp Configure(options => { options.AddProfile(validate: true); }); ``` ## More For more information, please refer to the following resources: * [Application Service Contracts](../LINGYUN.Abp.CachingManagement.Application.Contracts/README.EN.md) * [HTTP API](../LINGYUN.Abp.CachingManagement.HttpApi/README.EN.md) * [Domain Layer](../LINGYUN.Abp.CachingManagement.Domain/README.EN.md)