Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

What is the basic architecture of the software?

Architecture BASIC Software
0
Posted

What is the basic architecture of the software?

0

The software is using client-server system where the user interface of the client is web (browser) and the server is a standalone machine (server). Most of the request like validation and compression gets completed in client side itself using java-scripts and Ajax but for any request where database access is required the client sends request to server for process. For every process server receives from the client it opens a new database connection, thus for multiple processes it opens multiple connections. The connection gets closed once the process gets completed but still if the number of connection increases heavily then we manage them using connection polling. It is using 3-tier architecture, thus all application is between the three layers (a) User Interface, (b) Business/Application Layer and (c) Database. The diagram below display the 3 layers used in Easy Gurukul. User Interface – This layer has been used for any kind of user interaction with the software basically the client s

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123