Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 426 Bytes

File metadata and controls

21 lines (19 loc) · 426 Bytes

Architecture

flowchart LR
    A[API Server]
    B@{shape: das, label: "ticket"}
    C@{shape: das, label: "match"}
    D@{shape: cyl, label: "Feature Sture"}
    E[Loader]
    F[MatchFinder]
    G[Redis]

    A --request ticket--> B
    B -->E
    D --features--> E
    E --ticket with feature--> G
    G --periodic fetch--> F
    F --match candidates--> C
    C --match response-->A
    A --game result-->D
Loading