In the
real-time world, types of servers in which we can increase the
Cache Memory are :
1. Web Severs
2.Client-Server
It would be
beneficial for the performance of the server as
:
1. Web Servers :
- The web servers have the main purpose of providing the client
request
- When the client request comes at the web server, the web
servers respond to the client request by first passing it to the
database.
- The database then generate the output and send it to the
client. This is an overhead processing client request.
- When the client request asks for the same data time, then the
webserver can use cache memory to store that data.
- By storing the data item in the server's cache, then webservers
reduce the overhead time for the frequent access data item.
2. Client Servers :
- The client-server are present on the client-side.
- When the same client request same data items for a more number
of times, then the client-server stores the response of the client
request in the client-side cache.
- This prevents the client's request to move the server and then
get a response back from the server and reduce the overall client
request response time.