Large Web Application Graduation Courses

I recently met Erlang, a programming language, and I became interested in developing large-scale real-time browser-based web applications. I would like to know if there are any alumni courses anywhere in the US that teach me how to write scalable web applications or something like that.

+4
source share
3 answers

Writing scalable web applications, like so many things, is in some ways a bit of dark art. Not all methods are well documented, and the Internet is very young in terms of the power of servers running on applications. You must first understand the theory of distributed application architectures and their problems (bottlenecks, parallel state). Then apply this to your application platform. In this case, Erlang, where he still works out of the box.

  • Learn the language
  • Know what you want to build
  • How did others do this?
  • Get coding

In terms of scalability ... their general theory and then application. Different applications will require different approaches, which largely depend on the platform used.

The best thing to do is get the building and read about the theory as you go. It will be a steep curve. Also see examples .

+3
source

Personally, I think you're in the best place right now to learn about "writing scalable web applications." No one is better off learning than the people who did it.

I would just start writing a web application and ask questions about the area when you go.

+2
source

I recommend visiting Highscalability.com .

They focus on troubleshooting the problems that large websites had and how they are resolved.

+2
source

All Articles