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
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
- Parameters:
-
GET
/api/caching-management/cache/{key}: Get cache value for specified key- Parameters:
- key (string, required): Cache key
- Permission: AbpCachingManagement.Cache
- Parameters:
-
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
- Parameters:
-
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
- Parameters:
-
DELETE
/api/caching-management/cache: Delete cache- Parameters:
- key (string, required): Cache key
- Permission: AbpCachingManagement.Cache.Delete
- Parameters:
Installation
abp add-module LINGYUN.Abp.CachingManagement
More
For more information, please refer to the following resources: