英文:
Visualize the data in Memchache cluster in Elasticache
问题
我正在使用Elasticache中的memcache集群。在AWS用户界面上,我看不到我存储在缓存中的数据(存储一个JSON响应对象)。有没有办法我可以可视化这个JSON?
我想要查看缓存的数据的原因:
我最近更新了需要存储的JSON结构,想要验证新的结构是否被存储在缓存中。
英文:
I am using the memcache cluster in Elasticache. On the AWS UI, I do not see the data I am storing in the cache (storing a JSON response object). Is there a way I can visualize this json?
Why I want to see the data being cached:
I recently updated the json structure that needs to be stored and want to verify that the new structure is being stored in cache.
答案1
得分: 2
AWS只是为您管理Memcached服务器。它实际上并不关心数据。您需要通过Memcached客户端连接到Memcached集群来查看数据。
英文:
AWS just manages the Memchached servers for you. It doesn't really concern itself with the data. You would need to connect to the Memcached cluster via a Memcached client to view the data.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论