From the course: AWS Essential Training for Developers
Unlock the full course today
Join today to access over 24,700 courses taught by industry experts.
In-memory caches - Amazon Web Services (AWS) Tutorial
From the course: AWS Essential Training for Developers
In-memory caches
- When the database has to look up data, it can be slow. And if you need to keep looking up the same piece of data over and over again it can really slow down your application. Some databases are used like scratch pads where you can just look something up from your database and then you just write it down real fast on your scratch pad and then you don't have to keep looking it up each time. In-memory caches can do this for you and to help you deploy one of these AWS has created ElastiCache. ElastiCache will help you manage and deploy two of the most common types of in-memory caches, Mimcached and Redis. Redis is the more popular in-memory cache but I've used Mimchached because it's supported by a few PHP open source apps. Now, you can always install Redis or Mimcached directly on some EC2 servers and set all this up yourself but AWS has simplified a lot of the management of these services with ElastiCache. Not every…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.