AWS ElastiCache Limits and general questions

0

Hi AWS,

  • What if each key value pair is storing 100mb of data?
  • How much maximum key value pair is allowed and any restriction?
  • Does it use memory for cache from application server or from the cache server?

Also can you please share the architecture diagram?

1개 답변
0

ElastiCache is a managed in-memory data store service that supports two engines: Redis and Memcached.

https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/WhatIs.html https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/WhatIs.html

concepts are very similar but if we talk about redis

  1. not have a strict limit on the size of a key-value pair, it's generally recommended to keep them smaller for better performance but if you need to store 100MB no problem you can store
  2. Redis does not have a strict limit on the number of key-value pairs. The actual limit depends on the memory available in your cache node or cluster
  3. ElastiCache uses memory from the cache server, not from the application server. Your application server connects to the ElastiCache cluster to store and retrieve data, but the actual data resides in the memory of the cache server.

there is no specific architecture for elasticache it depends on you app architecture

Enter image description here

profile picture
전문가
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠