Categorygithub.com/akayami/go-cache-chain
module
0.1.4
Repository: https://github.com/akayami/go-cache-chain.git
Documentation: pkg.go.dev

# README

Multi Layer Caching

flowchart TD
    subgraph "TopLayer (ex: Memory)"
        direction TB
        Layer1 --> Backed1
    end
    subgraph "MiddleLayer (ex: Redis)" 
        direction TB
        Layer2 --> Backed2
    end
    subgraph "BottomLayer (ex: API)"
        direction TB
        Layer3 --> Backed3
    end
Client --> Layer1
Layer1 -->  Layer2
Layer2 --> Layer3

# Packages

No description provided by the author
No description provided by the author