https://github.com/kavekardel/easycaching-tutorial
In this solution, there are three projects for easycaching providers, including in_memory, Redis, and hybrid providers, in which the local and distributed cache system is implemented.
https://github.com/kavekardel/easycaching-tutorial
cache caching distributed hybrid in-memory performance redis
Last synced: about 2 months ago
JSON representation
In this solution, there are three projects for easycaching providers, including in_memory, Redis, and hybrid providers, in which the local and distributed cache system is implemented.
- Host: GitHub
- URL: https://github.com/kavekardel/easycaching-tutorial
- Owner: kavekardel
- Created: 2021-01-25T12:26:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-08T09:41:09.000Z (about 4 years ago)
- Last Synced: 2025-02-21T21:38:51.292Z (2 months ago)
- Topics: cache, caching, distributed, hybrid, in-memory, performance, redis
- Language: C#
- Homepage:
- Size: 37.1 KB
- Stars: 8
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EasyCaching🚀
EasyCaching library is a Easy Implementation of Caching System.
In this solution, there are three projects for easycaching providers, including in_memory, redis and hybrid providers,in which the local and distributed cache system is implemented.
By referring to this article,
( First Part
and
Second Part )
you can learn the explanations related to the types of caches and the implementation and type of operation of each of the easycaching package providers.Another point in this solution is implementing the cache system of each project at a different level of the project, which is for implement it in the controller or service or as an annotation attribute or a dedicated middleware.
For example, in the in-memory project, the cache is implemented in service, in redis project, the cache is implemented as an attribute, and in the hybrid project, it is implemented as a dedicated middleware.Finally, we tried to implement caching for real and professional projects.