# CacheManagement

ABP version (opens new window) NuGet (opens new window) NuGet Download (opens new window) Discord online (opens new window) GitHub stars (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

  1. 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
  2. Add DependsOn(typeof(CacheManagementXxxModule)) attribute to configure the module dependencies. (see how (opens new window))

  3. Add builder.ConfigureCacheManagement(); to the OnModelCreating() method in MyProjectMigrationsDbContext.cs.

  4. Add EF Core migrations and update your database. See: ABP document (opens new window).

# Usage

  1. Add permissions to the roles you want.

  2. Add your own cache items.

  3. Enjoy this wonderful module.

CacheItems EditCacheItem CacheItemData

# Roadmap

  • [ ] Cache values modification.
  • [ ] More detailed documentations.
  • [ ] More drivers.
  • [ ] Unit tests.
Last Updated: 8/26/2022, 9:14:33 AM