У меня вопрос о поведении Amazon DAX при кэшировании нулевых результатов. Если я попытаюсь выполнить GetItem из DAX с помощью Dynamodb, и результат будет нулевым. Будет ли DAX кэшировать нулевой результат, чтобы ускорить получение нулевого элемента?





да. DAX кэширует нулевой маркер, если элемент не найден в DynamoDB.
Да, DAX кэширует отрицательный результат:
DAX supports negative cache entries, in both the item cache and the query cache. A negative cache entry occurs when DAX cannot find requested items in an underlying DynamoDB table. Instead of generating an error, DAX caches an empty result and returns that result to the user.
A negative cache entry will remain in the DAX item cache until its item TTL has expired, LRU is invoked, or until the item is modified using PutItem, UpdateItem or DeleteItem.