You are tasked with optimizing a RESTful API that experiences high traffic and heavy load. Which caching mechanism would be most appropriate to reduce server load and improve response times?

  • a) Client-side caching
  • b) Server-side caching
  • c) Database caching
  • d) Cookie-based caching
For optimizing a RESTful API under heavy load, server-side caching is the most appropriate choice. It stores responses on the server and serves them to subsequent requests, reducing the load on the API and improving response times.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *