Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 1.04 KB

File metadata and controls

19 lines (15 loc) · 1.04 KB

AWS: Cloud Servers

Review, Research, and Discussion

  1. Describe the Web-Request-Response-Cycle
    • client sends an HTTP request to access a resource on a server
    • the server sends a response to the client, indicating if the request was fullfilled or there was an error
    • source: medium.com
  2. Explain what a “server” is, as it relates to the WRRC
    • hardware or software that responds to client by carrying out HTTP requests
  3. What does it mean to “deploy” an application?
    • running/hosting an app on a server

Vocab Terms

  • Server - can be either hardware or a software application that responds to client requests
  • Pub/Sub - publish/subscribe - asynchronous service-to-service messaging for serverless / microservice architectures. Can be used for event-driven architectures. Useful in messaging for distributed, cloud-based applications.
  • WRRC - Web Request Response Cycle