Тёмный

What is Redis and What Does It Do? 

CBT Nuggets
Подписаться 330 тыс.
Просмотров 260 тыс.
50% 1

Start learning cybersecurity with CBT Nuggets. courses.cbt.gg...
Trevor Sullivan covers the Redis cache service: what it is, what it does, and how it helps. It's an open source tool that runs as a service in the background that allows you to store data in memory for high-performance data retrieval and storage. That's the technical explanation, but watch on to hear about how useful it is for all manner of use cases.
Imagine you have a web application that's running inside a Docker container or directly on a server. If that web application needs to retrieve some data from a database like MySQL, PostgreSQL or MS SQL, that query could take anywhere between 15 and 60 seconds.
If you have a user waiting up to a minute for the performance of that report data or whatever data the user is trying to receive, you're going to have an unhappy user. A redis cache speeds all that up.
It's possible to store data inside of a Redis cache instance and make the retrieval of that data occur directly from memory (RAM) from a server that's running the Redis service - rather than making the application go all the way back to the database. Instead, the web server can check with Redis if it has the data it wants.
Redis isn't particularly valuable when it's standing in-between one web server and a database. But, what if you're running a large scale fleet of hundreds of webservers? One Redis cache can pool the requests and answers for all those webservers so that they don't have to individually go all the way to the database each time.
📁 Download the Ultimate Sysadmin Cert Guide: blog.cbt.gg/2c97
⬇️ 4-Week Study Plan: MD-100 & MD-101: blog.cbt.gg/k0q7
Start learning with CBT Nuggets:
• Intro to Cloud Computing | courses.cbt.gg...
Not a CBT Nuggets subscriber? Start your free week: www.cbtnuggets...
-----------------
Connect with CBT Nuggets for the latest in IT training:
• Twitter - / cbtnuggets
• Facebook - / cbtnuggets
• Instagram - / cbtnuggets
• LinkedIn - / cbt-nuggets
#redis #docker #mysql #ittraining #cbtnuggets

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 178   
@ekanastone
@ekanastone 3 года назад
I thought u were Jack Dorsey at firsts lol
@hangout7081
@hangout7081 3 года назад
😂 me too
@musaopaluwa2580
@musaopaluwa2580 2 года назад
🤣🤣🤣🤣
@mdbasaz
@mdbasaz 2 года назад
Me too
@akeinchina
@akeinchina 2 года назад
lol, me too.
@user-td5gy2fh3p
@user-td5gy2fh3p 9 месяцев назад
Lmfaooooooooo 😂😂😂
@pinxtr
@pinxtr 3 года назад
My man looks like he's putting tutorials straight from Antarctica
@opossum4463
@opossum4463 3 года назад
He looks like the CEO of a certain fortune 500 company. And that can't be a bad thing.
@opossum4463
@opossum4463 3 года назад
I mean, minus the nose ring.
@samarth319
@samarth319 3 года назад
I think he looks pretty similar to Twitter's CEO Jack Dorsey...
@kw19991
@kw19991 3 месяца назад
This is why indexes were invented, to reduce retrieval time for a query.
@kinax2
@kinax2 2 года назад
What if the user has updated he is info, Would the user get an old data or new data?
@lajos108
@lajos108 Год назад
I started a LinkedIn course on Redis, just to see what is it about. After 20 minutes I started to search on RU-vid for a summary of Redis and get the meaning of it in short time. This explanation is short, understandable, just great. Thanks!
@riskitall7421
@riskitall7421 2 года назад
Awesome explanation Trevor. Breaking down problems into dummy understanding is an art.
@kaushikdr
@kaushikdr 3 года назад
I have to admit, I was initially distracted by your glorious beard! :D I have a few questions I hope you can clarify - 1) Why is querying Redis faster than directly querying a database - is it because there is less amount of data to search from? Also, at what point does the cache start removing data? Is the oldest data removed first or is it the data that is accessed least often? 2) If we are using a cache worker to update the Redis cache every time there is a change to the database, why is this any faster than just directly querying the database? It seems that in this case, the Redis cache contains the same amount of information as the database and that the database would be updated before the Redis cache anyways.
@courageahorttor7666
@courageahorttor7666 2 года назад
Awesome elaboration. He hit the nail straight to the point
@lil_soum
@lil_soum 3 дня назад
You did such a great job explaining this, thank you.
@Ferruccio_Guicciardi
@Ferruccio_Guicciardi Год назад
Redis In-Memory database ! Redis Cache Service ! .... mmm... interesting.
@RedisUniversity
@RedisUniversity 3 года назад
Couldn't have put it better, great work!
@juneldomingo6277
@juneldomingo6277 2 года назад
Great explanation! wonder what will happen to traffic if the redis goes down? will the web goes down as well as it cant retrieve data from cache? or will the web traffic will go directly to the database. Thanks
@PowerUsr1
@PowerUsr1 2 года назад
This is a really good video. I’m a network engineer playing with docker and I’ve seen this a few times. Always wondered what it is.
@osmangani4966
@osmangani4966 2 года назад
simple and clear, to the point.......really like the way you explain.
@jackcastro9583
@jackcastro9583 2 года назад
i agree with your thinking!🥤cheers🥤
@Paul_Aderoju
@Paul_Aderoju Год назад
Thank you so much. Heard Vercel recently implemented a Key-Value system, and it’s a Redis-like data system. This video gave me a good overview of Redis.
@RoshanakRahimi-d1p
@RoshanakRahimi-d1p Год назад
thank you, it was so helpful
@curtezyt1984
@curtezyt1984 23 часа назад
YETI?
@ThefamousMrcroissant
@ThefamousMrcroissant 2 года назад
Aha, so basically an in memory cache. Very well structured video; shows the problem and how Redis attempts to solve it, making it intuitive to grasp its purpose.
@deedoodeedoo6382
@deedoodeedoo6382 2 года назад
@Alek Wolf I'm a complete beginner at Redis, but this seems to be a general software problem. Since Redis is an in-memory app that strives to use cache, to decrease the wait time for common data queries, it is based on RAM usage. Since it is based on RAM usage, it's limited by the RAM provided with the machine. I don't think BigData ever was a viable target for usage of Redis. BigData can return huge responses to queries and it's not really feasible to hold it all in limited RAM, a few bigger reports and OOM is achieved. I suppose at that point a better approach would be putting in resources to speed up the access to BigData resources and optimizing queries.
@adityamittal4357
@adityamittal4357 Год назад
This isn't what redis is, this is just an explanation of how a cache works. Caching is just one use case for redis. This video will make beginners think that redis is a cache, which is false. Redis is an in-memory key-value store with pub-sub model with many use cases such as creating event streams in architecture beyond mere caching.
@rednejiv123
@rednejiv123 3 года назад
Excellent video! Thanks a lot.
@koders9778
@koders9778 3 года назад
This was very helpful. Thanks sir!
@cbtnuggets
@cbtnuggets 3 года назад
We're so glad it's helpful for you! Thank you for learning with us.
@xxxxxGhostBoyxxxxx
@xxxxxGhostBoyxxxxx 2 года назад
the beard is an indicator of experience
@Acumen928
@Acumen928 3 года назад
Just what I needed.
@kunalb2051
@kunalb2051 3 года назад
Best video on Redis ❤️
@rohitschauhanitbhu
@rohitschauhanitbhu 3 года назад
I really liked the video. But your face could be a little smaller as all my attention keeps getting diverted to the beard, in all seriousness.
@adrianalb4098
@adrianalb4098 Год назад
really ... what web application would run queries that take 30 seconds to execute ... in any database engine ? maybe 30ms. yet, redis has his use, no doubt.
@Ibrahim-oc5ql
@Ibrahim-oc5ql День назад
very informative. thanks gistalot
@2dapoint424
@2dapoint424 2 года назад
Ohh so this is why Jack Dorsey quit Twitter!! To teach redis ,🤪
@StrikerEureka85
@StrikerEureka85 2 года назад
FINALLY! a clear explanation as to what it actually does. thank you for this.
@androidsavior
@androidsavior Год назад
where is the next video ? i cant find it
@LooneyTunesCarrot32
@LooneyTunesCarrot32 8 месяцев назад
So does this mean that the redis caching service will only be a hit if there has already been an existing query on the DB? Also, will the cache itself ever get too full, then what?
@amanuelyohannes7151
@amanuelyohannes7151 Месяц назад
I read somewhere redis is a great use case for chat apps. How does that be inline with caching I am very confused
@krishnashah6654
@krishnashah6654 5 месяцев назад
Store data in a redis cache instance and retrieve that data from the RAM of the server that’s running the service. Initially the instance doesn’t have any data instead of it’s config data.
@MrPx0727
@MrPx0727 2 года назад
Very good in explaining Redis serving as a cache system; would be nice to expand to all important features of Redis ...
@alexandroskourtis5268
@alexandroskourtis5268 3 года назад
greeeaaat video
@aakarshanraj1176
@aakarshanraj1176 2 месяца назад
01:20 the query wont take 30s if made by a user since its most of the time OLTP
@angeloreyes707
@angeloreyes707 2 года назад
Anybody else turn on the Captions to see how wrong the AI is about what he's saying? lol. Amusing.
@chriskaye1997
@chriskaye1997 2 года назад
Truly a great beard, so wow! much wisdom!
@byteestudio6406
@byteestudio6406 Год назад
Hie Guys. My name is Jack Dorsey😅😅🤣🤣😂😂
@moonman239
@moonman239 11 месяцев назад
So Redis can improve scalability by caching data.
@darrenklein6090
@darrenklein6090 Год назад
Thanks, that was very helpful.
@jackcastro9583
@jackcastro9583 2 года назад
hey brother , Your beard is sexy, i love it😀
@姚瑶-q8w
@姚瑶-q8w 2 года назад
very clear explanation. make us impressed a lot.
@dmitrykim3096
@dmitrykim3096 Год назад
I mean I guess this cache is only good if the data is quite small or we always request thr same data
@i3looi2
@i3looi2 Месяц назад
So why not do the caching at server/api level ?
@mridulranjan1069
@mridulranjan1069 2 года назад
So this video is about seeing your overgrown beard and not really redis :-/
@abbasabdulsalambamidele8760
@abbasabdulsalambamidele8760 19 дней назад
Very well explained. Thanks
@frogman3107
@frogman3107 Год назад
Why do we need database when we can store everything in redis in the first place?
@novicecoder5753
@novicecoder5753 Год назад
The explanation is good but can you give a real life example
@Kirimoshi
@Kirimoshi 2 месяца назад
I like the way you explain things, please keep going 👍
@ShukyPersky
@ShukyPersky 3 года назад
Sounds interesting 1. What are the memory requirements in the case of a large-scale database to keep this solution effective? 2. How effective this solution for a system that generates random access to a large-scale database? in which case Redis cache would require a lot of memory to stay effective I think that these topics should be referred to by the video.
@cbtnuggets
@cbtnuggets 3 года назад
Hi Shuky, thank you for your questions. It will really depend on the load and amount of data, but there are some profiles in AWS and Azure that will be for enterprise requirements up to 14TB of memory. docs.microsoft.com/en-us/azure/azure-cache-for-redis/cache-planning-faq#azure-cache-for-redis-performance This is a good break down of some performance recommendations. We hope this is helpful! Thank you for learning with us.
@globalclutter9508
@globalclutter9508 3 года назад
Very informative.
@torrvic1156
@torrvic1156 2 месяца назад
Thank you so much! That was very informative! I learned the scenarios of how I can use Redis.
@leedy8135
@leedy8135 Год назад
why always introduce ? is it impotant?
@Shubham__Saroj
@Shubham__Saroj 2 года назад
real quick and awesomely covered in less time.
@mikkeljensen1603
@mikkeljensen1603 Год назад
save your self the trouble and just use redis as a database, it is amazing
@jesseneon1896
@jesseneon1896 2 года назад
Amazing content but reduce your beards
@TANRININresulu
@TANRININresulu Год назад
Trade off made from correctness of retrieved value hence it is a cache…
@lifebyvikk6751
@lifebyvikk6751 11 месяцев назад
Oh look. Jack Dorsey got a twin brother
@sandhyakaranam6113
@sandhyakaranam6113 2 года назад
great explanation , thank you
@none0n
@none0n Год назад
Thanks for the great explanation. So in order words, without a cache workers, redis won't be aware of new data and there is always the risk to fetching stale data?
@mohammadzulqarnain6288
@mohammadzulqarnain6288 3 года назад
Simple and precise, it made me recall how my fried explained me about Redis and Guava caching but unfortunately i dont recall the difference btw them.
@levijohansen2603
@levijohansen2603 2 года назад
can barely see you, please make yourself bigger on screen
@an1me.graphics
@an1me.graphics Год назад
bro is a caveman who travelled to the future
@nicklowe_
@nicklowe_ Год назад
I’m not totally clear how the amount of RAM allocated to a docker instance would be able to hold any substantial amount of data from a database. I understand how this is useful for commonly queried data, but wouldn’t the service have to be very selective in what it chooses to cache? And don’t we have to worry about available RAM for the web server? Does Redis ever battle the server for resources?
@IchEsseKonsolen
@IchEsseKonsolen 3 года назад
Liking for the adorable outro. It HAS been informative for me!
@tech3425
@tech3425 Год назад
Jack dorsey teaching me redis
@luvon1114
@luvon1114 2 месяца назад
master node and slave node? ^_-
@Joop5037
@Joop5037 8 месяцев назад
Very good explanation.
@balu2567
@balu2567 11 месяцев назад
why is jesus telling me what is redis
@adityamittal4357
@adityamittal4357 Год назад
This isn't what redis is, this is just an explanation of how a cache works. Caching is just one use case for redis. This video will make beginners think that redis is a cache, which is false. Redis is an in-memory key-value store with pub-sub model with many use cases such as creating event streams in architecture beyond mere caching.
@indrranil24
@indrranil24 Год назад
awesome loved it!!!!
@bsummer
@bsummer 2 года назад
Wish we all Had Guys like this before College. Redis, which stands for Remote Dictionary Server cements it
@BassZeke
@BassZeke 2 года назад
Fantastic! concise. clear
@ns4k_tv
@ns4k_tv Год назад
Thanks! Helped me alott!!
@baolam4180
@baolam4180 2 года назад
awesome explanation and greatly clear english speaking. I can fully listen to you without looking at the sub. Well done!
@lovinthumper
@lovinthumper 6 месяцев назад
Very informative.
@navid045
@navid045 3 года назад
Very good, great accent
@michael_ibeh
@michael_ibeh 10 месяцев назад
you look like Jack Dorsey
@BlueDolphinBlues
@BlueDolphinBlues 3 месяца назад
Hi Trevor Sullivan
@briarsmith8241
@briarsmith8241 Год назад
Cache hit on the explanation
@ranjeetbadhe
@ranjeetbadhe Год назад
Can you please let us know how the Redis implementation in Openstack Controller works?
@davidmunyiri6147
@davidmunyiri6147 9 месяцев назад
That's a nice explanation Trevor, i like the way you explained bit by bit to understanding level
@rupeshsingh3607
@rupeshsingh3607 2 года назад
Nice video Sir ,please carry on ,nice voice clarity and representation
@horsedevoursy5458
@horsedevoursy5458 2 года назад
standard Eugene beer nerd. would be much better less distracting without someones face no matter how they look
@princekm5902
@princekm5902 2 года назад
where are his ears?
@Food.5inder
@Food.5inder Год назад
Awesome dude... simple and crispy explanation. Keep it up appreciate.
@Me3rkPL
@Me3rkPL 2 года назад
I googled CBT Aware
@aparnasaha9729
@aparnasaha9729 5 месяцев назад
excellent explanation
@martinkarkovich3037
@martinkarkovich3037 3 года назад
excellent explanation!
@juejuepaing6985
@juejuepaing6985 2 года назад
Thank you
@SuperKidontheblock
@SuperKidontheblock 2 года назад
Sounds alot like directory based caching.
@edwardfraser688
@edwardfraser688 3 года назад
Great explanation thanks.
@didorins4994
@didorins4994 Год назад
Thanks for starting from User experience, so we can understand the use-case clearly.
@davidbister2684
@davidbister2684 2 года назад
This is like hanna?
@vishalk2798
@vishalk2798 3 года назад
Well i had a query how long does the redis store a cache for is it for days or hours as if the cache does not clear then the redis cache size would get full right
@gagang.r684
@gagang.r684 Год назад
Thank you. It cleared all my doubts😀
@hackcodesfree9200
@hackcodesfree9200 Год назад
super explained
@tylercode2207
@tylercode2207 Год назад
That was really helpful...Thank You!!
@jordanpedroinvestimentos
@jordanpedroinvestimentos Год назад
Good video
@staramod
@staramod 3 года назад
How it is different than Riverbed’s technology?
@ann_uken
@ann_uken Год назад
Thank you for your great explanation! 💥
Далее
Redis Crash Course
27:31
Просмотров 628 тыс.
2. What Makes Redis Special? | Redis Internals
22:04
Просмотров 43 тыс.
ХОМЯК ВСЕХ КИНУЛ
10:23
Просмотров 480 тыс.
Apache vs NGINX
7:53
Просмотров 299 тыс.
Apache Kafka in 6 minutes
6:48
Просмотров 1 млн
Tech Talk: What is Public Key Infrastructure (PKI)?
9:22
Top 5 Redis Use Cases
6:28
Просмотров 182 тыс.
How do NoSQL databases work? Simply Explained!
7:38
Просмотров 1,1 млн
Redis in 100 Seconds
2:26
Просмотров 718 тыс.
What is a REST API?
9:12
Просмотров 1,5 млн
Session Vs JWT: The Differences You May Not Know!
7:00
Redis Tutorial for Beginners #1 - What is Redis?
5:56