How does software get hosted?

Basic Test Knowledge-How does software get hosted?

  • Clients request a URL;
  • CDN  interpret URL and route to the nearest network;
  • When request safety pass the 1st network, will get to the distribution layer such as nginx(whatever the public cloud or private cloud);
  • The Nginx cluster will distribute request basing on what type it belongs to:

             the static request will fetch data from static server

             the dynamic request will fetch data from the app server base on what business type it belongs to

             dome hot data  are preferable store in a cache server such as Redis

  • When a request pass to the app server will get a series of verification when logically is safety, will select related data from the database.

相关文章:

  • 2022-12-23
  • 2021-06-01
  • 2021-11-17
  • 2021-08-18
  • 2021-05-27
  • 2022-12-23
  • 2021-11-06
  • 2021-06-27
猜你喜欢
  • 2021-12-18
  • 2021-08-15
  • 2021-10-29
  • 2021-12-23
  • 2021-10-05
  • 2021-09-27
  • 2021-09-02
相关资源
相似解决方案