reading-notes

code fellows reading notes

View on GitHub

Reading-Notes

code fellows 401

Read: 16 - AWS: Cloud Servers

Describe the Web-Request-Response-Cycle

traces how a user’s request flows through the app.

Explain what a “server” is, as it relates to the WRRC

In a server, the WRRC takes in a request and returns a response.

What does it mean to “deploy” an application?

A deployed application is uploaded to a server for public access.

Vocab:

Server: a computer or system that provides resources, data, services, or programs to other computers, known as clients, over a network.

Pub/Sub: Stands for Publisher/Subscriber, allows services to communicate asynchronously, with latencies on the order of 100 milliseconds.

WRRC: Web Request Response Cycle. Responsible for every header, message body, and status code in the HTTP request, response cycle.