# CacheManagement
(opens new window) (opens new window) (opens new window) (opens new window) (opens new window)
An abp application module helps administrators to manage the app cache data.
# Online Demo
We have launched an online demo for this module: https://cache.samples.easyabp.io (opens new window)
# Installation
Install the following NuGet packages. (see how (opens new window))
- EasyAbp.CacheManagement.Application
- EasyAbp.CacheManagement.Application.Contracts
- EasyAbp.CacheManagement.Domain
- EasyAbp.CacheManagement.Domain.Shared
- EasyAbp.CacheManagement.EntityFrameworkCore
- EasyAbp.CacheManagement.HttpApi
- EasyAbp.CacheManagement.HttpApi.Client
- (Optional) EasyAbp.CacheManagement.MongoDB
- (Optional) EasyAbp.CacheManagement.Web
- (Optional) EasyAbp.CacheManagement.StackExchangeRedis
Add
DependsOn(typeof(CacheManagementXxxModule))
attribute to configure the module dependencies. (see how (opens new window))Add
builder.ConfigureCacheManagement();
to theOnModelCreating()
method in MyProjectMigrationsDbContext.cs.Add EF Core migrations and update your database. See: ABP document (opens new window).
# Usage
Add permissions to the roles you want.
Add your own cache items.
Enjoy this wonderful module.
# Roadmap
- [ ] Cache values modification.
- [ ] More detailed documentations.
- [ ] More drivers.
- [ ] Unit tests.