
Ultimate access to all questions.
An online retail application requires migration to AWS due to increasing traffic. The current setup includes a web server handling sessions in memory and a separate MySQL database server. High traffic leads to memory overload and performance issues, primarily due to session management. The developer plans to migrate the web server using EC2 instances with Auto Scaling and an Application Load Balancer. What changes should be made to enhance performance?
A
Migrate the MySQL database to an EC2 instance and store both session and application data in it.
B
Implement Amazon ElastiCache for Memcached to manage session data and use Amazon RDS for the MySQL database to store application data.
C
Utilize Amazon ElastiCache for Memcached for both session and application data storage.
D
Manage session data with the EC2 instance store and store application data in an Amazon RDS MySQL database.