Your team is tasked with optimizing a large-scale e-commerce application that experiences sporadic spikes in traffic. Which set of optimizations would be most effective in handling high traffic while maintaining a responsive user experience?

  • Implement caching for frequently accessed data
  • Use a single server instance to minimize resource usage
  • Disable load balancing to simplify the architecture
  • Optimize for low-bandwidth connections only
Implementing caching for frequently accessed data is an effective optimization strategy for handling high traffic while maintaining a responsive user experience. Caching can reduce the load on your backend servers and speed up response times. Using a single server instance and disabling load balancing may lead to performance bottlenecks and decreased reliability. Optimizing for low-bandwidth connections alone may not address the scalability and responsiveness issues during traffic spikes.
Add your answer
Loading...

Leave a comment

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