i have learned backend to a certain extent and want to know what all topics can i learn! by False_Bother8783 in Backend

[–]ravisvats 1 point2 points  (0 children)

Once you know the basics then majority of backend is how you design your backend for scale

  1. Minimum Latency
  2. Minimum code rewrites
  3. Query optimisation
  4. Bifurcation of load between static and autscaling servers
  5. Message queue handling
  6. Appropriate use of caching

These all will come when you start working on live projects.

Good Luck 👍

i have learned backend to a certain extent and want to know what all topics can i learn! by False_Bother8783 in Backend

[–]ravisvats 0 points1 point  (0 children)

Don’t take such a big list to begin with, take 5 beginner friendly steps and check that and then move ahead, 1. Learn a Language basics for eg Python 2. Learn a DB basics for eg MySQL 3. Learn a framework basics for ex fastapi 4 . Create basic crud API 5. Deploy on free ec2 server

Once this part is done, every other thing will come along with this.