Redis: The Complete Developer's Guide
Redis: The Complete Developer's Guide, available at $94.99, has an average rating of 4.65, with 190 lectures, 2 quizzes, based on 1589 reviews, and has 20788 subscribers.
You will learn about Use Redis as an incredibly fast database for a backend application Extend the functionality of Redis by using custom scripts and modules Add, update, and query your data using simple and flexible commands Get hands-on experience by adding Redis to a complex E-Commerce project Handle concurrency issues by using powerful synchronization primitives Utilize data streams to add durable communication between servers Host your Redis database in AWS, GCP, or Azure using Redis Cloud Analyze and balance the tradeoffs of Redis's different data structures This course is ideal for individuals who are Developers looking to speed up their existing web app or Engineers who want to use an extremely fast database It is particularly useful for Developers looking to speed up their existing web app or Engineers who want to use an extremely fast database.
Enroll now: Redis: The Complete Developer's Guide
Summary
Title: Redis: The Complete Developer's Guide
Price: $94.99
Average Rating: 4.65
Number of Lectures: 190
Number of Quizzes: 2
Number of Published Lectures: 188
Number of Published Quizzes: 2
Number of Curriculum Items: 192
Number of Published Curriculum Objects: 190
Original Price: $199.99
Quality Status: approved
Status: Live
What You Will Learn
- Use Redis as an incredibly fast database for a backend application
- Extend the functionality of Redis by using custom scripts and modules
- Add, update, and query your data using simple and flexible commands
- Get hands-on experience by adding Redis to a complex E-Commerce project
- Handle concurrency issues by using powerful synchronization primitives
- Utilize data streams to add durable communication between servers
- Host your Redis database in AWS, GCP, or Azure using Redis Cloud
- Analyze and balance the tradeoffs of Redis's different data structures
Who Should Attend
- Developers looking to speed up their existing web app
- Engineers who want to use an extremely fast database
Target Audiences
- Developers looking to speed up their existing web app
- Engineers who want to use an extremely fast database
In a world with hundreds of different databases, one database rises to rule them all.
Redis is an in-memory database known for its speed and simplicity. Originally used only for simple caching, its feature set has expanded to be one of the most versatile databases around.
This course will teach you everything you need to know to integrate Redis into a new or existing project.
-
Get hands-on experience with commands used to add, update, and query data
-
Apply best practices and numerous design patterns by adding Redis to an E-Commerce app
-
Understand and extend the internals of Redis by using modules and scripts
-
Go beyond Redis with a deep look at fundamental concurrency issues and solutions
Data structures form the heart of Redis. Rather than hiding functionality behind complex abstractions, Redis exposes several powerful data structures that developers use to store and query data. Learning about these different data structures is the key to mastering Redis. This course focuses on making sure that you understand the difference between a sorted set and a hash. After completing this course, you’ll understand when to use each structure and the benefits and drawbacks to each. Don’t have a background in algorithms or data structures? That’s OK! Everything in this course assumes you have no prior knowledge.
Almost all top companies around the world use Redis. Twitter, GitHub, Snapchat, Craigslist, StackOverflow – they all use Redis! Nearly every major web product you use on a daily basis utilizes Redis behind the scenes. And its not just large companies that use Redis – small startups do as well.
To understand Redis, you must use Redis. Just memorizing commands isn’t enough. You need to get your hands dirty! With that in mind, you’ll work through many exercises and quizzes. In addition, throughout this entire course you will build a large E-Commerce application using Redis. Don’t worry – you won’t need to write any frontend code. As we learn new topics in Redis, we will add new features to our E-Commerce app. You’ll get to see why and when we use each major feature of Redis.
Built-in cheatsheets. Many resources about Redis show running commands in a terminal window. This approach makes it hard to remember even the most basic commands. In this course, you’ll take a different approach. I built a standalone webapp called RBook just for you to use in this course. This app allows you to run commands against your own Redis instance and document them at the same time, making it easy for you to refer back to your notes in the future. Of course, you don’t have to use RBook if you don’t want to!
Effective learning.Everything in this course is designed to make your learning process as easy as possible.
-
At every step, I will teach you what Redis is doing internally, and help you understand how to twist and bend Redis to better suit your application’s needs.
-
Every single video in the course has an attached ZIP file containing up-to-date code, just in case you ever get stuck.
-
Full-time teaching assistants are standing by to help answer your questions.
-
Access to a private live chat server is included. Live help whenever you need it!
Soooo much more. Here’s a partial of some of the things you will do in this course:
-
Write basic commands to store, update, and query data
-
Practice your skills with exercises and quizzes
-
Use almost every major feature of Redis to build an E-Commerce app
-
Enforce data constraints using sets, sorted sets, and lists
-
Understand when to use each of Redis’s major data structures
-
Apply numerous design patterns to integrate Redis into an existing codebase
-
Securely deploy a Redis instance using AWS, GCP, or Azure through Redis Cloud
-
Collect stats and metrics sourced from a live API
-
Communicate between different servers using Streams
-
Master the concept of transactions to safely store data
-
Implement a standard locking algorithm to solve concurrency issues
Redis is known for being simple, but it is still hard to learn. You’re given a huge toolbox with tons of features, but no clear guidance on when to use each feature. This course aims to give you direction. You’ll understand why each feature exists, and when to use them in real apps. You will find learning Redis a delightful experience and pick up a tremendous amount of knowledge along the way.
Sign up today and join me in mastering Redis!
Course Curriculum
Chapter 1: Get Started Here!
Lecture 1: Hello and Welcome!
Lecture 2: Join Our Community!
Lecture 3: Course Resources
Lecture 4: Why Use Redis?
Lecture 5: Initial Setup
Lecture 6: A Touch More Setup
Lecture 7: Running RBook Locally
Chapter 2: Commands for Adding and Querying Data
Lecture 1: Basic Commands
Lecture 2: Documentation on Commands
Lecture 3: Variations of SET
Lecture 4: Use Case of Expiration Options
Lecture 5: Setting Multiple Keys
Lecture 6: GET and MGET
Lecture 7: String Ranges
Lecture 8: Are These Commands Even Useful?
Lecture 9: Dealing with Numbers
Lecture 10: Again… Why do These Commands Exist?
Lecture 11: Completed Notes
Lecture 12: Using a Completed Notebook
Lecture 13: Exercises
Lecture 14: A Few Exercises
Lecture 15: Exercise Solutions
Chapter 3: E-Commerce App Setup
Lecture 1: E-Commerce App Source Code Download
Lecture 2: Don't Skip This Video
Lecture 3: Redis Client Libraries
Lecture 4: First Implementation Task
Lecture 5: Redis Design Methodology
Lecture 6: Key Naming Methodology
Lecture 7: Adding Page Caching
Lecture 8: Better Key Generation
Chapter 4: Local Redis Setup
Lecture 1: Installing on MacOS
Lecture 2: Installing on Windows
Chapter 5: Hash Data Structures
Lecture 1: Hashes in Redis
Lecture 2: Storing and Retrieving Hashes
Lecture 3: Deleting Hash Data
Lecture 4: Numbers in Hashes
Lecture 5: Completed Notes
Chapter 6: Redis Has Gotcha's!
Lecture 1: Slightly Unpredictable HSET and HGETALL
Lecture 2: Issues with HSET
Lecture 3: Issues with HGETALL
Chapter 7: Powerful Design Patterns
Lecture 1: App Overview
Lecture 2: Reducing the Design to Queries
Lecture 3: What Data Type for Each Resource
Lecture 4: Create User Implementation
Lecture 5: Serialization and Deserialization
Lecture 6: Adding Serialize
Lecture 7: Fetching a User
Lecture 8: Implementing Sessions
Lecture 9: Fetching a Saved Session
Lecture 10: Creating Sessions
Lecture 11: Serializing Date Times
Lecture 12: Storing Items
Lecture 13: Fetching a Single Item
Chapter 8: Pipelining Commands
Lecture 1: Batching Commands with Pipelines
Lecture 2: Running Multiple Commands at the Same Time
Lecture 3: Executing a Pipeline
Chapter 9: Enforcing Uniqueness with Sets
Lecture 1: Basics of Sets
Lecture 2: Union of Sets
Lecture 3: Intersection of Sets
Lecture 4: Difference of Sets
Lecture 5: Store Variations
Lecture 6: Checking for an Element in a Set
Lecture 7: Scanning a Set
Lecture 8: Completed Notes
Lecture 9: Most Common Use Cases of Sets
Chapter 10: A Little Set Implementation
Lecture 1: Requiring Unique User Names
Lecture 2: Adding a Like System
Lecture 3: How to Count the Number of Likes?
Lecture 4: Updating Like Quantities
Lecture 5: Showing Liked Items
Lecture 6: Showing Common Liked Items
Chapter 11: Organizing Data with Sorted Sets
Lecture 1: Sorted Sets
Lecture 2: Adding and Removing Members
Lecture 3: Finding a Range of Scores
Lecture 4: Removing the Highest and Lowest Members
Lecture 5: Updating Scores
Lecture 6: Querying a Sorted Set
Lecture 7: Completed Notes
Chapter 12: Practice Time with Sorted Sets!
Lecture 1: Sorted Set Use Cases
Lecture 2: Reminder on the Auth Flow
Lecture 3: Storing Usernames
Lecture 4: Kind of Storing Strings in Sorted Sets
Lecture 5: Converting User IDs
Lecture 6: Plan for Showing Most Viewed Items
Lecture 7: Initializing Views on Item Creation
Lecture 8: Incrementing View Counters
Instructors
-
Stephen Grider
Engineering Architect
Rating Distribution
- 1 stars: 8 votes
- 2 stars: 11 votes
- 3 stars: 61 votes
- 4 stars: 432 votes
- 5 stars: 1078 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024