Server - Database
Shared Hosting: Multiple Web Site in a single server which is the functionality of web server application, uses different http folder for each site. Virtual Private server: Web Server is differnent for each web app with own OS. Single Machine has can have multiple OS through virtualization or may have different Machine which is connected with a Proxy server. Proxy server decides which request forward to which machine or which vm machine same. Load Balancing: A load balancing setup includes a load-balancing virtual server and multiple load-balanced application servers. The virtual server receives incoming client requests, uses the load balancing algorithm to select an application server, and forwards the requests to the selected application server. Concurrent Request This is configurable by selecting multi-process or mutli-thread. where number of max thread can be selected. After reaching that max number of thread, new process will be created. Also, queue mechanism can ...