这是基于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.8 KiB

LINGYUN.Abp.CachingManagement.HttpApi

HTTP API implementation for the cache management module.

API Endpoints

/api/caching-management/cache

  • GET /api/caching-management/cache/keys: Get cache key list

    • Parameters:
      • prefix (string, optional): Key prefix
      • filter (string, optional): Filter condition
      • marker (string, optional): Pagination marker
    • Permission: AbpCachingManagement.Cache
  • GET /api/caching-management/cache/{key}: Get cache value for specified key

    • Parameters:
      • key (string, required): Cache key
    • Permission: AbpCachingManagement.Cache
  • POST /api/caching-management/cache: Set cache value

    • Parameters:
      • key (string, required): Cache key
      • value (string, required): Cache value
      • absoluteExpiration (DateTime, optional): Absolute expiration time
      • slidingExpiration (DateTime, optional): Sliding expiration time
    • Permission: AbpCachingManagement.Cache.ManageValue
  • PUT /api/caching-management/cache/refresh: Refresh cache

    • Parameters:
      • key (string, required): Cache key
      • absoluteExpiration (DateTime, optional): Absolute expiration time
      • slidingExpiration (DateTime, optional): Sliding expiration time
    • Permission: AbpCachingManagement.Cache.Refresh
  • DELETE /api/caching-management/cache: Delete cache

    • Parameters:
      • key (string, required): Cache key
    • Permission: AbpCachingManagement.Cache.Delete

Installation

abp add-module LINGYUN.Abp.CachingManagement

More

For more information, please refer to the following resources: