Redis In-Memory Database Crash Course

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ธ.ค. 2024

ความคิดเห็น • 69

  • @hnasr
    @hnasr  3 ปีที่แล้ว +14

    Learn the fundamentals of database systems to understand and build performant backend apps
    Check out my udemy Introduction to Database Engineering
    husseinnasser.com/courses

  • @redhood7105
    @redhood7105 3 ปีที่แล้ว +9

    You are the sole reason I concurred my fear of backend/servers and now am I actually half decent backend developer

    • @metabolic_jam
      @metabolic_jam 3 ปีที่แล้ว +4

      *conquered. But congrats

  • @dennysam829
    @dennysam829 3 ปีที่แล้ว +1

    The only TH-camr who asks you to skip to the content you love so that you don't waste your time, instead of increasing his watch time!

  • @surbhipaliwal879
    @surbhipaliwal879 2 ปีที่แล้ว +2

    Hello Nasser, your content is brilliant and the way you talk and present tops it. Its like having a coffee table discussion with you about a topic(my role being a good listener). I leant a lot of concepts at its core. I have been looking for a content like this for long. Big thanks man!

  • @Zolo00
    @Zolo00 3 ปีที่แล้ว +6

    Hussein you are the man! I recommend all my coworkers to your channel.

    • @hnasr
      @hnasr  3 ปีที่แล้ว +3

      Much appreciated !!! Thanks

  • @ricardoislasruiz3186
    @ricardoislasruiz3186 3 ปีที่แล้ว +3

    Man you are the best! I cannot believe that you don't have a million subscribers! I love your work and I have learned a lot of it! Thank you so much! Greetings from Mexico

    • @hnasr
      @hnasr  3 ปีที่แล้ว +1

      Thank you Ricardo! ❤️ love to all my subs from beautiful Mexico 🇲🇽

  • @1realseth1
    @1realseth1 3 ปีที่แล้ว +3

    I did not have seen that many tutorials/crash course as good as yours to follow!😁 for me it was perfect. Entertaining and still got all the Infos I wanted/needed.
    Thank you! Keep on!

  • @SpotAllen
    @SpotAllen 3 ปีที่แล้ว +12

    I know this is off topic. One thing I love about Hussein's manner of speaking, is that he doesn't sound weird at 1.5x speed, which is very rare. :)

  • @coding_ss632
    @coding_ss632 3 ปีที่แล้ว +29

    This video is done, waiting for part-2 of the crash course. Where you'll give examples of clustering & replication with redis. 🥰🥰🥰

  • @coding_ss632
    @coding_ss632 3 ปีที่แล้ว +2

    You're my favourite tech TH-camr. You honestly deserve more than a million subscribers. Thank you for putting out such a good content. More power to you.

  • @bijeesraj007
    @bijeesraj007 3 ปีที่แล้ว +3

    Am I the only one hit like button then watch ? You earned my trust

    • @hnasr
      @hnasr  3 ปีที่แล้ว +2

      ❤️❤️❤️❤️

  • @djole010
    @djole010 9 หลายเดือนก่อน

    Great video, very infomative, I love your style.
    Here are my 2 cents about HTTP vs TCP:
    If I was designing a DBMS I would also use TCP. HTTP uses TCP in the background. TCP keeps permanently open socket connection, whereas HTTP closes the socket connection after each request/response cycle, and that adds overhead to communication. Also with TCP you can have just as much security as with HTTP with TLS, since it's the same underlying principle.

  • @snghnishant
    @snghnishant 3 ปีที่แล้ว +2

    You made Redis like a piece of cake to understand. Great video now I am going to learn Redis also.

  • @avi12
    @avi12 3 ปีที่แล้ว +11

    3:34 In Latin, "per cent" means "out of hundred"
    So people commonly write it as one word
    Credit to Eddie Woo

  • @rajeevsinha7884
    @rajeevsinha7884 3 ปีที่แล้ว +2

    Hello Mr. Nasser, Your way of presenting the topic is really awesome and way different than typical lecturing, I loved the content and listening the videos. lot of regards from India.

  • @isaacfrost9798
    @isaacfrost9798 3 ปีที่แล้ว +6

    Hussein thanks a lot I learned a lot from you. Baraka laho fik.

  • @joshualoew8976
    @joshualoew8976 3 ปีที่แล้ว

    Thanks!

  • @indiansoftwareengineer4899
    @indiansoftwareengineer4899 3 ปีที่แล้ว +1

    I have upcoming interview at big unicorn startup and I have to complete take home assignment which has redis implementation, I will update you after passing it....
    love you sir.

  • @snehotoshbanerjee1938
    @snehotoshbanerjee1938 2 ปีที่แล้ว

    Great video Hussein. The first in-memory database I worked on a couple of years back was TimesTen. We usually use this along with the main Oracle DB for caching aggregates. You can sync data, mostly aggregates for faster reporting defaulted to that particular aggregation hierarchy.

  • @CodingNuggets
    @CodingNuggets 3 ปีที่แล้ว +2

    Thanks for this. I've been needing a refresher. Appreciate you Hussein. See you soon!

  • @mishasawangwan6652
    @mishasawangwan6652 3 ปีที่แล้ว +1

    redis is simple to install, configure and use , with sdk s available for all major programming languages and good performance out of the box. it’s no surprises we all love it.

  • @tech3425
    @tech3425 ปีที่แล้ว

    Good starter video. Would love more coolish stuff from redis :)

  • @yogeshchaudhary621
    @yogeshchaudhary621 2 ปีที่แล้ว

    God level explanation!

  • @avatsavirs
    @avatsavirs 3 ปีที่แล้ว +1

    28:00 TCP and HTTP aren't competing protocols. TCP is a transport layer protocol and HTTP is an application layer protocol. In fact HTTP uses TCP in transport layer.

    • @ladmerc
      @ladmerc 3 ปีที่แล้ว +3

      I think he didn't insinuate that they're competing. As you mentioned, HTTP is built on top of TCP so there's always going to be some overhead when using HTTP instead of TCP. For example, HTTP would parse headers, format of data etc
      I think what he's curious about is if these overheads outweigh the benefits of using HTTP

    • @muhaimintaib
      @muhaimintaib 3 ปีที่แล้ว

      @@ladmerc agreed. He’s just wondering why most other databases (not all) are creating their own protocol on top of raw TCP (this is what Redis does), instead of just using the new HTTP/2 where you can keep the TCP connection open and streams requests back and forth. Using QUIC (soon to be HTTP/3) is also an option.

  • @Technicalgogi
    @Technicalgogi 10 หลายเดือนก่อน

    hi, Hussein i have a question and it will not take long to answer so, plesase answer it
    question: just after completing high school i had purchased a web development course and learned a lot. After some 3-4 months i endup with a job. It is now 4 months of job. at this point i am enjoying and also learning a lot from nice gurus like you. But i want to go more deeper into computer science like how operating systems, db systems, cpu executes instructions works, do i need to join college to learn all these stuffs or i can learn by my own by joining some good community, opensource, reading book etc.

    • @omar-senpaiii
      @omar-senpaiii 6 หลายเดือนก่อน

      You can learn them by yourself.
      Hussein himself has courses for both db & os fundamentals.

  • @BhaaRaThh
    @BhaaRaThh 2 ปีที่แล้ว

    Do you know what to explain in part 2

  • @kfc-enjoyer-based
    @kfc-enjoyer-based 3 ปีที่แล้ว

    You can use the arrow keys to navigate between previous commands or use !! to get the prev command

    • @hnasr
      @hnasr  3 ปีที่แล้ว +1

      Great tip!!! Thanks

  • @re1nth98
    @re1nth98 2 ปีที่แล้ว +1

    Doesn't Http use tcp? You are comparing an application layer with transport layer. I guess Resp and Http are comparable. Correct me if wrong.

  • @justafreak15able
    @justafreak15able 3 ปีที่แล้ว

    So you can use Redis as your primary DB? No caveats?

  • @ajcwhite
    @ajcwhite 3 ปีที่แล้ว

    Perfect timing!

  • @romantsyupryk3009
    @romantsyupryk3009 3 ปีที่แล้ว +1

    Thanks very much for this video.

  • @SadgeZoomer
    @SadgeZoomer 3 ปีที่แล้ว +2

    shukran gazilan

  • @Dstonephoto
    @Dstonephoto 3 ปีที่แล้ว +1

    My god, I want to do blow with this guy and see what genius startup we come up with

  • @izureki
    @izureki ปีที่แล้ว

  • @luisribeiro5639
    @luisribeiro5639 ปีที่แล้ว

    Imagine, REDIS with non volatile memory, like the future ReRAM as your storage.....the perfect match, Millions of Rps on a commodity server. Everybody will choose REDIS and the infrastructure will be simplier (no more cache all in non volatile memory accessible in sub millisecond). For me, REDIS with ReRAM is the futur. No need of Snapshop or AOF, no care about the size of the memory, the dream.

  • @Dimich1993
    @Dimich1993 3 ปีที่แล้ว

    splendid🤗

  • @ProgrammingLinguist
    @ProgrammingLinguist 3 ปีที่แล้ว +1

    I think couchdb uses http as the protocol

  • @kayeshparvez
    @kayeshparvez 3 ปีที่แล้ว

    why are we calling pub-sub instead of queue ?

  • @kapilsonyt
    @kapilsonyt 3 ปีที่แล้ว

    Thank you so much sir.

  • @ProJS-wj4xh
    @ProJS-wj4xh 3 ปีที่แล้ว

    I think single is best for system need fast response but multi needed in task need time like data anlize and data Science
    or Processing video or images and i think non block single thrid like nodejs its gorgeous..

    • @ProJS-wj4xh
      @ProJS-wj4xh 3 ปีที่แล้ว +1

      At the end of the day nodejs use multi at the behind of the seen.. but its still single 😂😂.
      like javascript its not single thrid language but in browser it is..
      and new we can use multi in browser

    • @ProJS-wj4xh
      @ProJS-wj4xh 3 ปีที่แล้ว +2

      it called web workers..

  • @fahadaldhafairi2322
    @fahadaldhafairi2322 3 ปีที่แล้ว

    Good Job. If it possible Do Memcached with Node.js or PHP

  • @Luxcium
    @Luxcium 3 ปีที่แล้ว

    What about streams ?

    • @mohamedhabas7391
      @mohamedhabas7391 3 ปีที่แล้ว +1

      They are quite trikey , I have been hunting for a way to deal with them , the only approach I found is people using custom data frames and processing them as a sequence of json strings.
      I wish if someone is familiar with dealing with streams would give his/her opinion

    • @Luxcium
      @Luxcium 3 ปีที่แล้ว

      @@mohamedhabas7391 the few videos I have looked are examples of how to use them but no real use case the video are with Salvatore Sanfilippo himself (2 years ago) he does it quickly in vim in front of us but not only he is well prepared but we can imagine that he knows intrinsically what he is talking about

  • @sachinghait3723
    @sachinghait3723 3 ปีที่แล้ว

    @hussain you can append ?sub_confirmation=1 in channel link on your website, it will ask if user wants to subscribe in a pop-up

  • @mithunchopda
    @mithunchopda 3 ปีที่แล้ว

    Hey! Hussain. How about collaborating on building an Http based Database? 😎

  • @cartor12
    @cartor12 3 ปีที่แล้ว

    i was just watching the old redis video lol

  • @menzeus4293
    @menzeus4293 3 ปีที่แล้ว

    you babble too much of unnecessary things and diverted from the topic so many times