Redis in 100 Seconds

Поділитися
Вставка
  • Опубліковано 22 січ 2025

КОМЕНТАРІ • 561

  • @Fireship
    @Fireship  3 роки тому +611

    I thought I knew Redis, but I was wrong. Setup a database, then download Redis Insight and you'll see why bit.ly/3wnVsXA. Stay tuned for a full tutorial where we really put it to the test.

    • @TheLifeMusicYT
      @TheLifeMusicYT 3 роки тому +13

      let's go i'll finally have a reason to learn redis if you explain it :D

    • @pilearn1266
      @pilearn1266 3 роки тому +3

      I get what you are saying. It is just a lot of work upfront to set an excellent caching system.

    • @darshangowda309
      @darshangowda309 3 роки тому +11

      I thought I knew Redis, but I was wrong too! I never knew it was acronym for Remote Dictionary Server 🔥

    • @AlexanderGarzon
      @AlexanderGarzon 3 роки тому +4

      I always used redis as volatile key value storage, either cache or transitional data .. but I didn't knew you can actually use it as primary database... I will dig more into it. Thanks.

    • @yt-sh
      @yt-sh 3 роки тому +2

      you learn wayy faster

  • @ElNachoMacho
    @ElNachoMacho 2 роки тому +88

    This is a channel I didn't know I needed. I am studying up on different cloud services and it's like drinking from a fire hydrant. When I have to get familiar with dozens of services, it's great to have the ability to get a brief overview just like it is done in this video. Thank you!

  • @hnasr
    @hnasr 3 роки тому +772

    Fantastic as usual (you really make our content look bad next to yours Jeff haha)
    What I would add is redis achieves full durability through APF (append only file) journaling aka WAL or redo logs in other databases.
    The beauty here is you can configure how durable you want Redis to be which can give you more write performance. Full durability means every write synchronously writes to the AOF disk and only succeeds when that write to disk succeeds. Your writes are as fast as your AOF disk but you suffer no data loss in case of an outage.
    You can configure redis journaling to be asynchronously written every x second (minimum 1 second) which means writes are blazing fast (in memory). Every second the writes are buffered and asynchronously written to the AOF. However you could lose a second worth of data in case of an outage.
    So I am really interested to see how redis perform in full durability mode against other DBMS specially with indexes and concurrent transactions.

    • @washedtoohot
      @washedtoohot 3 роки тому +16

      Love your content as well, bro ♥️

    • @LyroPac
      @LyroPac 3 роки тому +9

      Love your content... Because of you I have learned a lot... Thanks for sharing your valuable time and knowledge man

    • @Fireship
      @Fireship  3 роки тому +105

      Interesting, I'll roll the dice and take performance over reliability.

    • @deepeshmathuria
      @deepeshmathuria 3 роки тому +62

      @@Fireship depends on the system don't you think, for a financial system or a system which heavily depends on data integrity, fast doesn't mean better, correct does.

    • @praenubilus1980
      @praenubilus1980 3 роки тому

      Jeff always using background music, maybe you should consider about that in your future video

  • @ngneerin
    @ngneerin 3 роки тому +1139

    100 seconds! That's all the attention span I have

    • @shanujha7245
      @shanujha7245 3 роки тому +33

      nice
      i forgot what i was going to say

    • @thedragonrises6882
      @thedragonrises6882 3 роки тому +8

      Kinda sad

    • @gubocci
      @gubocci 3 роки тому +6

      @@thedragonrises6882 what do you mean kinda

    • @thedragonrises6882
      @thedragonrises6882 3 роки тому +2

      @@gubocci I mean it could've been 30secs like most of the morons on social media nowadays but atleast OP is on 100secs for now.

    • @pedrochacin1386
      @pedrochacin1386 3 роки тому +3

      I got less. Got lost in the middle of the video.

  • @basix250
    @basix250 3 роки тому +41

    You just totally changed my understanding of Redis at 1 AM. Excellent video.

  • @phantomproduction5757
    @phantomproduction5757 2 роки тому +9

    As a computer science student, I start from your channel whenever I have to study a different topic. Thanks for the excellent short content.🙏

  • @mryechkin
    @mryechkin 3 роки тому +16

    Incredible. This is by far the most clear and concise explanation of Redis I've ever heard

  • @brod515
    @brod515 3 роки тому +171

    Redis in 100 Seconds
    Me: "pfff... I already know reddis. I bet there is nothing I'll learn"
    @0:19:
    Me: "I've already failed"

  •  3 роки тому +24

    Your ability to produce quality content so fast is amazing

  • @muhammadsami479
    @muhammadsami479 3 роки тому +76

    That animated intro 😍

  • @axea4554
    @axea4554 3 роки тому +381

    “if you need relations then add graphs extension” I would love to see a video where you explain if it possible to swap a relation database with a graph database

    • @assorium
      @assorium 3 роки тому +16

      Want to see this too. Because now, it seems like to use a cow instead of a horse in a wagon. You maybe can, but why?

    • @ZachInSpace
      @ZachInSpace 3 роки тому +1

      Neo4j

    • @TheRanguna
      @TheRanguna 3 роки тому +3

      @@assorium exactly, that's a very good analogy.

    • @Mettaworldj
      @Mettaworldj 3 роки тому

      Graph databases are awesome I’m working with one right now for a project. And seeing that redis now includes one as an option I’m sold!!

    • @shanujha7245
      @shanujha7245 3 роки тому +1

      and since neo4j just launched a graphdb.....

  • @TheJobCompany
    @TheJobCompany 3 роки тому +57

    The animation at 2:16 was kinda cool

    • @TheJobCompany
      @TheJobCompany 3 роки тому +1

      @Ishtiaque A Walid that was too easy to type so I figured..

    • @_timestamp
      @_timestamp 3 роки тому

      Probably made in Adobe After Effects

    • @TheJobCompany
      @TheJobCompany 3 роки тому +1

      @@_timestamp I was hoping it was a css keyframes anim

  • @nemeziz_prime
    @nemeziz_prime 2 роки тому +6

    I have to admit - whenever I'm trying to understand some fancy tech concept, like get a detailed overview of it, Fireship is the one-stop solution !! Amazing content 👏🏻👏🏻👏🏻

  • @bowiemtl
    @bowiemtl Рік тому +1

    Your shorts are usually jokey but these videos really do a good job of explaining the main functionality of certain frameworks and concepts. Whether or not I'd use redis comes down to what project is being worked on. All projects I've worked on so far have never needed something more advanced than a regular mysql database. The thing is that people want more performance out of it yet I haven't come even close to the full potential by optimizing my queries properly and beyond that level of performance we're talking about completely different levels of scale

  • @explodingpizza
    @explodingpizza 3 роки тому +8

    I can't say no to a tech video that teaches me something valuable in only 100 seconds.

  • @DarkH4X0
    @DarkH4X0 3 роки тому +59

    Salvatore Sanfilippo is one of the many reasons why I'm proud of being Italian (he comes just after the pizza)

  • @jacobrose9606
    @jacobrose9606 3 роки тому +5

    These videos are highly accessible and that’s why they blow up. Fireship should get a dedicated team with the express purpose of planning out these bite-sized videos… seriously.
    Have different “tiers” as well, like normie, beginner, and tech wizard videos.

  • @JordanBuildz
    @JordanBuildz 3 роки тому

    Honestly you have such a gift, I don’t even think redis themselves could come up with a better commercial

  • @elbojoloco
    @elbojoloco 3 роки тому

    Been using Redis for many years, and NEVER did I think to use it for more than just a basic message bus or cache store... Thank you for opening my eyes!

  • @gobzdzilla
    @gobzdzilla 3 роки тому +41

    I use Redis as my primary to reduce complexity but I think it's a preference thing. I don't like queries and procedures so it's better for my sanity just to fetch and parse the data.

    • @FunkPianoGrooveMan
      @FunkPianoGrooveMan 3 роки тому +3

      Not just preference. Apples, oranges. Google for ACID vs BASE. (right tool) => right job. Also HA/FT is not "
      "guaranteed" by Redis snapshots || "transaction logs" (or even combined) in Redis as opposed to oldskool SQL-like BASE platforms. It is with transaction logs, but takes a hell lot of time to recover. Devil is in the details. (the 101th second and onwards...)
      Check out AWS ElastiCache reference. (yes it's managed, but still) It does however cope with HA/FT via replication in an excellent way! Redis is wonderful for a given set of challenges, "traditional" SQL (or SQL-like) engines are perfect for other types of problems etc.

    • @MrSMGun
      @MrSMGun 2 роки тому

      I am contemplating using redis as a primary store but is discouraged by the small amount of people using redis as a primary store. What are the caveats or gotchas involved in this?

    • @gobzdzilla
      @gobzdzilla 2 роки тому

      @@MrSMGun it's basically a key-value storage. You can store binary data, strings, lists and sets. It's flat so you have to emulate depth with fake paths in key strings or double keying by making one value a list of id's of other values that are part of a single group.

  • @3bdo3id
    @3bdo3id 10 місяців тому +16

    It is closed source for future updates now

    • @saumitit944
      @saumitit944 9 місяців тому +1

      It's not open source but instead "source-available"

  • @derfeuerhamster
    @derfeuerhamster 3 роки тому +7

    For me personally, the possibility to use Redis as a very easy message broker is more interesting. But as always, your 100 seconds of... videos are awesome!

  • @SweetSummerChildern
    @SweetSummerChildern 3 роки тому +59

    I have learnt a lot of new things that I have never worked with from your videos, like AWS, nginx, kubernetes, graphQL(and other dbs), typescript to name a few. One thing that I don't understand is how they work together. I would really love to see a video where you design a mock system using all of these (and possibly more) and explain each of their roles and why you chose it (kinda like your reverse-cloud migration video using raspberry pi).
    Whenever I think of a software architecture I think of them as several layers that interact with each other. However, I am unable to assign which layer what belongs to by watching a stand alone tutorial about a single tool.
    Btw, I am a college senior pursuing CS major and I love your content. Thanks for all the awesome contents.

  • @ondskabenselv
    @ondskabenselv 3 роки тому

    I love your 100 seconds videos!
    I watch and like them all, hoping to help you beat the UA-cam recommendation algorithm and make these wonderful short videos show up as suggested videos for other folks.
    Now have a great day, and keep up the good work!

  • @kalyankumar239
    @kalyankumar239 3 роки тому +8

    Thanks for making it in dark background.

  • @viewfavorites
    @viewfavorites 3 роки тому +17

    I love your 100 seconds stuff!!! 🔥

  • @danvilela
    @danvilela 3 роки тому +5

    I was just studying this! I also read that redis can serve as a pub/sub mechanism replacing your usual queue tech (for example SQS)

  • @ruanmontelo
    @ruanmontelo 3 роки тому +3

    I was lucky enough to have used Redis in my previous job (a bit more than two years) and its awesome. The only problem I see with using Redis is the use of third-party libraries to connect with it.

  • @mlindatech
    @mlindatech Рік тому

    I like your 100 second video Jeff. I always make sure that I watch your video each day.

  • @blurey8569
    @blurey8569 3 роки тому +88

    The idea of Redis as primary database terrifies me 😬
    Always fast database sounds too good to be true tho

    • @JariNestel
      @JariNestel 3 роки тому +3

      Me too, especially as I don't see it scaling into the TB region at all, though as temporary storage it proofed itself to be the better solution.

    • @PrafulPrasad
      @PrafulPrasad 3 роки тому +1

      @@JariNestel You don't see it scaling into TB/PB region because you have this "feeling" or you some proof/ actual implementation issues?

    • @PrafulPrasad
      @PrafulPrasad 3 роки тому +1

      @@JariNestel true but like one of the answers says you can snapshot the data and save its indexes in redis. However that will make it behave like a normal relational database but will solve the problem. Yeah otherwise you're right TBs of ram is unrealistic and undesirable.

    • @ShaneTheKing
      @ShaneTheKing 3 роки тому +14

      @@JariNestel Additionally, if you run out of RAM, Redis just starts ejecting data with no regard to its meaning or context. Seems like a pretty terrible primary database, TBH.

    • @KofYam
      @KofYam 3 роки тому +3

      @@ShaneTheKing you have full control over what eviction policy is used, which can be disabled all together if you want.

  • @feritperliare2890
    @feritperliare2890 2 роки тому +1

    I implemented using Redis on our backend on a pretty basic level and I will say that it was pretty easy it’s a little tricky sometimes if you wanna filter through data to the user but you can’t argue with how fast it is

  • @razakadam74
    @razakadam74 3 роки тому

    Now repeat this 100 seconds video 10 more times. I love this channel. Thanks Jeff

  • @lucemansster
    @lucemansster 3 роки тому +2

    100 seconds of Cassandra / Scylla. Keep up the good work!

  • @pilearn1266
    @pilearn1266 3 роки тому +6

    I am using it as a cache memory for news sites; the primary database is PostgreSQL

    • @codeaperture
      @codeaperture 3 роки тому

      What is your backend Framework

  • @Lt.WalterTull
    @Lt.WalterTull 2 роки тому

    nice straight forward 'no nonsense' video. Thanks a lot for these!

  • @subhaneet
    @subhaneet 3 роки тому +1

    I have only used redis to store session and such but this makes me wanna expand upon it. Thank you!!

  • @jesselima_dev
    @jesselima_dev 3 роки тому +1

    Awesome!!!!!!
    The best short explanation about Redis. Good to know about Redis as the primary database is an option on the table (is not a SQL joke but it could be hahaha).
    Depending on the use case can and cost relation it can be really great.
    The Radisson and RedisGraph look very interesting to me.

  • @bigwisu
    @bigwisu 3 роки тому

    managing Redis at scale is a challenge.. since you mentioned Redislabs, running the database on Redislabs also removes scale headaches!

  • @ankitsingh-xw3bk
    @ankitsingh-xw3bk 3 роки тому +121

    I have setup Redis as cluster with 6 nodes. ✌

    • @willinton06
      @willinton06 3 роки тому +8

      @Chris Habgood spoilers, it is, but once you set it up correctly you’re good to go

    • @ankitsingh-xw3bk
      @ankitsingh-xw3bk 3 роки тому +1

      @Chris Habgood no as of now no such issue. Just we need to follow proper configuration

    • @dr.z7958
      @dr.z7958 3 роки тому

      Why you need many nodes? I thought it was scalable to couple of GBs easily? I don't think you're having >300GB dataset?

    • @willinton06
      @willinton06 3 роки тому +1

      @@dr.z7958 why wouldn’t he?

    • @ankitsingh-xw3bk
      @ankitsingh-xw3bk 3 роки тому +5

      @@dr.z7958 master slave architecture for failover. 3 master nodes and 3 slave nodes.

  • @tizio5103
    @tizio5103 3 роки тому +3

    I lurve me some Redis. It's been my favorite DB since 2011. However, using it as your primary database is only a good idea when you can afford to lose the last few seconds of data in the event of a container or service failure since write ACKs do not wait for a memory to disk write to complete.

  • @mohanm8361
    @mohanm8361 3 роки тому +2

    Google Sheet with Sheet API & Google script is the only database I'm ever going to use...

  • @daniloespinozapino4865
    @daniloespinozapino4865 2 роки тому

    this is the best first approach someone can get to more in depth knowledge

  • @himanshurajpal7842
    @himanshurajpal7842 Рік тому +1

    Other channel :- "speed up the video"
    Fireship:- "Decrease the speed" 😂

  • @shateq
    @shateq 3 роки тому

    I was waiting for this video for long! Thank you Jeff!

  • @mrk131324
    @mrk131324 2 роки тому +10

    I would (and have) use redis as primary database for the application or microservice but would still have a persisting database in the background that could reinstantiate the state to redis if need be.

  • @valdemarkjaer
    @valdemarkjaer Рік тому

    I would use Redis in “client side apps” as support until the final commit. For example, eletronic health records are extremelly complex and a patient’s single day events involve hundreds or thousands of structured and unstructured data. Having a malleable and simpler “first” line in memory/client hd dbms can help to deal with the persistence design at server side, to reduce data volume exchanges during the process. Won’t use it for big data analytics or to deal with higher data security needs.

  • @MouhssineElQacimyplus
    @MouhssineElQacimyplus 3 роки тому

    have been using redis for Queue tasks without knowing all of this ! thanks for letting me know this

  • @DavisonIncorp
    @DavisonIncorp 2 роки тому +1

    Redis is still somehow one of the most underrated tools on the web

  • @eli-shulga
    @eli-shulga 3 роки тому

    Haven't worked with Reddis for a long time. "Reddis as the main db" is an interesting concept..
    Thanks

  • @davidnguyen9065
    @davidnguyen9065 3 роки тому

    Best fucking explanation I've seen on Redis for a very long time

  • @zayyarphone
    @zayyarphone 3 роки тому

    These short videos are very addictive.

  • @ganeshbabu6458
    @ganeshbabu6458 3 роки тому +20

    We are using Redis primarily for storing data that are often required from backend. Can Redis also be used as a message broker?

    • @Fireship
      @Fireship  3 роки тому +24

      Indeed, message broker and kafka-like streams are common use cases.

    • @codeaperture
      @codeaperture 3 роки тому +2

      What is your backend Framework

    • @shamashel
      @shamashel 3 роки тому

      If you want something similar to SQS but where you can also delete any message by id, RSMQ is a pretty decent nodejs library to make your life easier

  • @Maegop88
    @Maegop88 3 роки тому +1

    Nice explanation in short time, thanks!

  • @THEBEST-lh6pq
    @THEBEST-lh6pq 3 роки тому

    Wow never thought of using redis as primary database. Thanks a lot

  • @jamesallen74
    @jamesallen74 3 роки тому

    My Access Database for my website of 5,000,000 users is just fine thank you.
    Now, off to figure out why people are complaining about it being slow. 😁

  • @DannyBPlays
    @DannyBPlays 3 роки тому

    You've mastered the youtube viewer attention span. "Redis in 5 minutes" would get very little interest. But a minute and a half? Yeah I can spare that

  • @lorinfortuna1547
    @lorinfortuna1547 3 роки тому

    in the last 5 years redis has grown pretty neat. did relational redis on application level with lua scripting on redis in 2015 using a php app :)

  • @soroosha
    @soroosha 3 роки тому +2

    haha this video will have caused a lot of people a lot of headache in a few years. No single tool can make your app magically faster. It's about system design and using the right tools in the right places. Stay safe out there

  • @riddheshmarkandeya7147
    @riddheshmarkandeya7147 3 роки тому +1

    This definitely blew my mind. Awesome vid.

  • @brianevans4
    @brianevans4 3 роки тому

    I thought I knew redis. But I only knew about the key-value store. Never seen the JSON or Search functionality. Definitely gonna try that after seeing this video. Thanks a lot, and I'd love to see more about redis

  • @Johnny-tw5pr
    @Johnny-tw5pr 3 роки тому +7

    How do you use both a relational database (postgreSQL for example) and redis in the same website?

    • @cloudfox1908
      @cloudfox1908 3 роки тому +2

      Depends on what you want to do. But you can write to your cache and database and then check your cache to read values and fallback to your database if it doesn't exist in the cache. You can also batch queries to your database.

    • @Eagle3302PL
      @Eagle3302PL 3 роки тому

      I use redis as a cache for stuff I don't want to persist but want my code to have fast access to.
      I use it as a queue and cache for sharing data between our nodes responsible for processing it.
      I also use it to cache results of expensive but fairly frequent queries.

  • @ganeshdeshmukh8020
    @ganeshdeshmukh8020 3 роки тому

    I use "Redis" while talking to FE team and other developers, to "Show off", as I won't tell my friends that I own top varient of Iphone but surely tell them that what 'sekcy' tech I use,
    thanks for making these videos as summarized...

  • @JSEvans-or5xe
    @JSEvans-or5xe 3 роки тому

    I'd like to see a video on etcd. Not only is it a powerful key-value store, but understanding how it uses the raft algorithm in a cluster is amazing.

  • @jakeoi-f1c
    @jakeoi-f1c 3 роки тому

    You didnt even touch on redis pub/sub which is by far the best feature.
    Redis saved my project at least 3 times over, when i comes to scaling. Every dev should know how to use this. I cant recommend it enough

  • @Akshattheyoutuber
    @Akshattheyoutuber Рік тому

    Ultimate explanation in shot period

  • @hemantvetal
    @hemantvetal 3 роки тому

    Its excellent for syncing the data from your relational database and serving your get requests through it

  • @arvindsreenivas
    @arvindsreenivas 3 роки тому

    Cool! Short and sweet! Perfect for quick understanding

  • @sociocritical
    @sociocritical 3 роки тому +3

    If you use Redis as your primary database you probably want it to be durable. By default Redis only fsyncs every second. In conclusion this means you have to configure Redis to fsync to disk synchronously with each request, which will hurt performance significantly or have to tell your application developers that one second of acknowledged writes could be lost.. Redis is also primarily single threaded (I know that Redis forks for snapshots and log rewrites etc. and that there is multi threading since Redis 6 "I/O threading" but this implementation is so bad lets pretend it doesn’t exist…) So if you really want to scale Redis you have to go for a Redis Cluster.

  • @j0131n
    @j0131n 3 роки тому

    Always a great 100-sec explanation.

  • @public1400
    @public1400 3 роки тому

    TNX for your usefull and really fast! descriptive video

  • @juanmarino1754
    @juanmarino1754 2 роки тому

    Loved the video, quick and to the point -- just as I like it :3

  • @calvinrahmat814
    @calvinrahmat814 3 роки тому

    Broo I just learn Redis today from bootcamp, then your video just came up 😳😳

  • @anjalbinayak
    @anjalbinayak 3 роки тому

    Fantastic, gonna use it on my next project

  • @josuegranados6953
    @josuegranados6953 2 роки тому

    These kind of videos are what I need when I have to install software as prerequisites for a project and I want to know what they are.

  • @HomeCode
    @HomeCode 3 роки тому +2

    This has made me pretty excited about a DB. It seems super scary keeping it in memory though!

  • @user-fy4iq6if4z
    @user-fy4iq6if4z 5 місяців тому

    I am a beginner in the backend programming field and am about to choose a database system for my portfolio. Redis and MySQL seem quite good.

  • @MaZe741
    @MaZe741 3 роки тому +2

    I see that it's possible to use redis as a primary database, but migrating a legacy system built on a traditional relational database to redis is an absolute no-go.

  • @bovineox1111
    @bovineox1111 4 місяці тому

    Redis rocks and provides superb performance

  • @rushithakker1085
    @rushithakker1085 3 роки тому

    Just when I needed it. Thanks fireship. 👍

  • @frenezif7728
    @frenezif7728 3 роки тому

    The other thing are queries, maybe executing searches in redis is harder than in a traditional database engine. Specially when the data set is larger.

  • @ingenarelitems
    @ingenarelitems 9 місяців тому +14

    this aged well

    • @reyariass
      @reyariass 8 місяців тому

      Agreed

    • @kairavb
      @kairavb 8 місяців тому

      what happened?

    • @noredine
      @noredine 6 місяців тому +3

      @@kairavb License shenanigans

  • @shifashassan1296
    @shifashassan1296 3 роки тому +9

    High quality content as always, thanks alot

  • @fedepia84
    @fedepia84 3 роки тому

    This is the channel every single software engineer need, I thought I knew Redis... now I know that I know nothing

  • @tudatostrader
    @tudatostrader 2 роки тому

    NATS in 100 sec please. Awesome series :)

  • @dimitrisproios1860
    @dimitrisproios1860 3 роки тому

    As primary DB no,especially if there is need for strong persistence guarantees ( between ram & disk ), also not sure how easily is it to scale and synchronise across multiple machines / disks . Enterprise DBs eg oracle) sells both very highly priced. For small personal projects everything works, but production systems are not easy to experiment with in small teams .Amazing video though.

  • @thechargeblade
    @thechargeblade 3 роки тому

    I've used redis in production before, the first problem is always "do you need it" it not just fast database as I thought, turned out we didn't need redis.

  • @CorrosionX4
    @CorrosionX4 3 роки тому

    Oh damn I was using Redis the traditional way for a long time I didn't know how much it evolved!

  • @r2rito654
    @r2rito654 3 роки тому

    Has someone else started skipping the video backward at the start? sounds pretty good. Great video btw

  • @androov2797
    @androov2797 3 роки тому

    The best ad I have ever seen.

  • @254_Cyrus
    @254_Cyrus 3 роки тому +5

    Hey Fireship. I use Redis and love this approach. I love all your content and never miss a video💙. I have a request, could you do one for Rethink DB and probably one about deploying a running container instance. Appreciate it. Thanks for all the content, I have grown as a developer watching your channel ❤️.
    Cheers.

  • @abhinavsingh7089
    @abhinavsingh7089 3 роки тому

    I really appreciate the video. But it would be more useful if you could add in description cons of using it as well. This would really enhance the quality. I mean it would be a good source material rather than people individually going out and searching

  • @shanujha7245
    @shanujha7245 3 роки тому

    Yes Jeff, I need a full tutorial. Great video btw! and yes, pls, tutorial.

  • @ЛизаБудачева
    @ЛизаБудачева Рік тому

    Redis is most amazing technology in the world, I really like it

  • @Priyam_Gupta
    @Priyam_Gupta 3 роки тому

    Though you have explained so much but its only brought down to storing key:value pair!

  • @mohnishsatidasani7552
    @mohnishsatidasani7552 3 роки тому

    I did use redis for storing sessions and it is really so fast. May be there are more scalable or faster ways of doing it too

  • @Zc4sh
    @Zc4sh 3 роки тому

    Dude I love your art! Big fan

  • @rajmankar4440
    @rajmankar4440 2 роки тому

    Boom so redis can help you get and set data as fast as possible

  • @mountainslopes
    @mountainslopes 3 роки тому +1

    I'm going to see about trialling this on a project. Awesome

  • @ken8144
    @ken8144 3 роки тому +5

    I love this short videos

  • @ethanlal4517
    @ethanlal4517 3 роки тому +1

    Good video. Please make one on JSDocs too.