View on GitHub

reading-notes

https://samahabujwaied.github.io/reading-notes/

Describe the Web-Request-Response-Cycle

The request/response cycle traces how a user’s request flows through the app. Understanding the request/response cycle is helpful to figure out which files to edit when developing an app (and where to look when things aren’t working)

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

What does it mean to “deploy” an application?

Application Deployment (also referred to as Software Deployment) is the process of installing, configuring, and enabling a specific application or set of applications, usually through an application manager (app manager) or software management system, to a specific URL on a server.

Term Definition
Server A server is a computer or system that provides resources, data, services, or programs to other computers, known as clients, over a network. In theory, whenever computers share resources with client machines they are considered servers.
Pub/Sub Pub/Sub enables you to create systems of event producers and consumers, called publishers and subscribers. Publishers communicate with subscribers asynchronously by broadcasting events, rather than by synchronous remote procedure calls (RPCs).
WRRC Web Request Response Cycle : The web is a cycle of requests and responses that flow between clients and servers