You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Alex Cohen edited this page Sep 15, 2024
·
2 revisions
API Overview
graph TD
subgraph Client
Browser
end
subgraph Server
API["API Server (.NET 6)"]
Transformations["Data Transformations (F#)"]
DB[(MariaDB / PostgreSQL)]
Redis[(Redis)]
end
subgraph External
Game["Final Fantasy XIV"]
Uploader["ACT Plugin (Uploader)"]
end
Game --> Uploader --> API
Browser --> API
API -->|Reads/Writes| DB
API -->|Caching| Redis
Transformations -->|Processes Data| DB
Transformations --> Redis