Step 1: Create a cache - Amazon ElastiCache
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Step 1: Create a cache

The cache you're about to launch will be live, and not running in a sandbox. You incur the standard ElastiCache usage fees for the cache until it is deleted. The total charges are minimal (typically less than a dollar) if you complete the exercise described here in one sitting and delete the cache when you are finished. For more information about ElastiCache usage rates, see Amazon ElastiCache.

Create a serverless cache

Amazon Web Services Management Console

To create a new cache using the ElastiCache console:

  1. Sign in to the Amazon Web Services Management Console and open the ElastiCache console at https://console.amazonaws.cn/elasticache/.

  2. In the navigation pane on the left side of the console, choose Memcached Caches.

  3. On the right side of the console, choose Create Memcached cache.

  4. In the Cache settings enter a Name. You can optionally enter a description for the cache.

  5. Leave the default settings selected.

  6. Click Create to create the cache.

  7. Once the cache is in "ACTIVE" status, you can begin writing and reading data to the cache.

To create a new cache using the Amazon CLI

The following Amazon CLI example creates a new cache using create-serverless-cache.

Linux

aws elasticache create-serverless-cache \ --serverless-cache-name CacheName \ --engine memcached

Windows

aws elasticache create-serverless-cache ^ --serverless-cache-name CacheName ^ --engine memcached

Note that the value of the Status field is set to CREATING.

To verify that ElastiCache has finished creating the cache, use the describe-serverless-caches command.

Linux

aws elasticache describe-serverless-caches --serverless-cache-name CacheName

Windows

aws elasticache describe-serverless-caches --serverless-cache-name CacheName

After creating the new cache, proceed to Step 2: Read and write data to the cache.