这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
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

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

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

  2. Add the following code in the ConfigureServices method of your module:

Configure<AbpAutoMapperOptions>(options =>
{
    options.AddProfile<AbpCachingManagementApplicationAutoMapperProfile>(validate: true);
});

More

For more information, please refer to the following resources: