I have a DynamoDB instance created in AWS and I have also created a cache cluster in AWS Elasticache. I want to use Elasticache to improve read/write performance. I am not sure how this is done with Python.
Can you please provide pointers/guidance on how to attach the Elasticache to my DynamoDB instance? I was able to connect to the Elasticache and fetch the clusters, but need help on how to proceed.
Reference code:
conn = boto.elasticache.connect_to_region('us-west-2',
aws_access_key_id='<KEY_ID>',
aws_secret_access_key='<KEY_ACCESS>')
print conn.describe_cache_clusters(cache_cluster_id='<ID>')