KRaffiqFazal / Fingerspelling-Application

Sign Language Finger-spelling application for university final project.
0 stars 0 forks source link

Investigate gRPC and how it can be used to keep data layer information separate from front-end and processing #10

Open KRaffiqFazal opened 1 month ago

KRaffiqFazal commented 1 month ago

Industry-level applications can store the data layer and part of the persistence layer in one project, and another part of the persistence layer with the DTO layer in another project. Keeping them separated ensures that information correlating to the backend is secure and kept away from players. It is worth investigating if gRPC can be used here to send information back and forth between these channels to aid security whilst also keeping more logic server-side.

KRaffiqFazal commented 1 month ago

This video explains gRPC - it can be used to understand the basics of it and its considerations when looking to implement it in this project.

KRaffiqFazal commented 3 weeks ago

Issue #14 was created to start implementing this.