Redis Tutorial In 16 Minutes | Learn What, Basics and How to Implement FastAPI Redis

Поділитися
Вставка
  • Опубліковано 5 вер 2024

КОМЕНТАРІ • 30

  • @sepehrghafari428
    @sepehrghafari428 Місяць тому +1

    This one helps me a lot! I was always scared of it. Thanks!

  • @kevon217
    @kevon217 8 місяців тому +2

    These tutorials are TOP NOTCH! Highly-appreciated !

    • @codingwithroby
      @codingwithroby  8 місяців тому +1

      Awesome! I am so glad you enjoy them 🙂

  • @CharlesEffiong-t6j
    @CharlesEffiong-t6j Місяць тому

    I love it. You just earned a subscriber :)

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

    Awesome! Your videos have been so helpful for me :)

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

      Yay! I am glad you have been able to find value here 🙂

  • @muralir2418
    @muralir2418 8 місяців тому +1

    Great tutorial. Could you please add tutorial for redis rq with fastapi. Thanks

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

      Thank you! I will take a look for a future video.

  • @sarthak7413
    @sarthak7413 Місяць тому

    from where I can get the code?

  • @sandie_jr
    @sandie_jr 10 місяців тому

    Thanks, Eric. Clean explanation

  • @20BCS125MUTHARASU.A
    @20BCS125MUTHARASU.A Місяць тому

    but in redis-py aioredis was merged so we can use that one with contextmanger in fastapi

  • @munroegarrett
    @munroegarrett 10 місяців тому

    Redis can persist data and can be used as a primary database although that is not the most common use case.

    • @codingwithroby
      @codingwithroby  10 місяців тому

      I guess you can, that would be a reallllly bad practice to do.

    • @munroegarrett
      @munroegarrett 10 місяців тому

      @@codingwithroby Perhaps although it would likely be possible to also persist the data to a regular database which would add redundancy while also preserving the performance benefits.
      It is much easier to achieve HA with
      Redis than it is with Postgres. A distributed multi-cloud, multi-server, multi-region Redis database with persistence is probably not an unsafe approach.

  • @jhalmu
    @jhalmu 11 місяців тому

    Great content! (upgrade that pip please :D) I like the music here.

    • @codingwithroby
      @codingwithroby  11 місяців тому +1

      Noted! I am glad you found value (and enjoyed the music!)

    • @jhalmu
      @jhalmu 11 місяців тому

      @@codingwithroby Actually I bought your Udemy Course - no, bought two courses

    • @codingwithroby
      @codingwithroby  10 місяців тому +1

      You're the best! Hope you enjoyed them and got value 🙂

  • @ronifintech9434
    @ronifintech9434 3 місяці тому

    why not use lifespan? startup and shutdown have been deprecated.

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

    Hello Roby,
    greetings from Haiti.
    Can't do the same demo with aioredis and httpx?

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

      Hey friend! Yes, you may also use aioredis to get the same results 🙂

  • @Optimusjf
    @Optimusjf 5 місяців тому

    Excelent

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

    It's good for beginners, but I don't think that's how redis is used in the real world. we can't just say "hey go write this to redis" on every endpoint. there has to be a way to do it automatically, like background tasks.

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

      Well background tasks is different - yes, they can populate Redis but what I’m showing is how Redis works. How to save and store data.