Topic 1 Question 513
A developer is building a three-tier web application that should be able to handle a minimum of 5000 requests per minute. Requirements state that the web tier should be completely stateless while the application maintains session state for the users.
How can session data be externalized, keeping latency at the LOWEST possible value?
Create an Amazon RDS instance, then implement session handling at the application level to leverage a database inside the RDS database instance for session data storage.
Implement a shared file system solution across the underlying Amazon EC2 instances, then implement session handling at the application level to leverage the shared file system for session data storage.
Create an Amazon ElastiCache (Memcached) cluster, then implement session handling at the application level to leverage the cluster for session data storage.
Create an Amazon DynamoDB table, then implement session handling at the application level to leverage the table for session data storage.
ユーザの投票
コメント(1)
- 正解だと思う選択肢: C
Al externalizar la sesión en un clúster de ElastiCache con Memcached, se obtiene un almacenamiento en memoria de baja latencia, ideal para manejar un alto volumen de solicitudes
👍 1italiancloud20252025/02/17
シャッフルモード