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?

profile picture
質問済み 1年前1931ビュー
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
エキスパート
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ