These tutorials are TOP NOTCH! Highly-appreciated !
@codingwithroby Жыл бұрын
Awesome! I am so glad you enjoy them 🙂
@sepehrghafari4285 ай бұрын
This one helps me a lot! I was always scared of it. Thanks!
@codingwithroby5 ай бұрын
Glad I could help!
@LiftAndC0de Жыл бұрын
Awesome! Your videos have been so helpful for me :)
@codingwithroby Жыл бұрын
Yay! I am glad you have been able to find value here 🙂
@CharlesEffiong-t6j5 ай бұрын
I love it. You just earned a subscriber :)
@codingwithroby5 ай бұрын
Yay, thank you!
@sandie_jr Жыл бұрын
Thanks, Eric. Clean explanation
@codingwithroby Жыл бұрын
So glad you enjoyed the content!
@muralir2418 Жыл бұрын
Great tutorial. Could you please add tutorial for redis rq with fastapi. Thanks
@codingwithroby Жыл бұрын
Thank you! I will take a look for a future video.
@munroegarrett Жыл бұрын
Redis can persist data and can be used as a primary database although that is not the most common use case.
@codingwithroby Жыл бұрын
I guess you can, that would be a reallllly bad practice to do.
@munroegarrett Жыл бұрын
@@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.
@alexandrodisla6285 Жыл бұрын
Hello Roby, greetings from Haiti. Can't do the same demo with aioredis and httpx?
@codingwithroby Жыл бұрын
Hey friend! Yes, you may also use aioredis to get the same results 🙂
@jhalmu Жыл бұрын
Great content! (upgrade that pip please :D) I like the music here.
@codingwithroby Жыл бұрын
Noted! I am glad you found value (and enjoyed the music!)
@jhalmu Жыл бұрын
@@codingwithroby Actually I bought your Udemy Course - no, bought two courses
@codingwithroby Жыл бұрын
You're the best! Hope you enjoyed them and got value 🙂
@sarthak74136 ай бұрын
from where I can get the code?
@20BCS125MUTHARASU.A5 ай бұрын
but in redis-py aioredis was merged so we can use that one with contextmanger in fastapi
@codingwithroby5 ай бұрын
Awesome additional information!
@ronifintech94348 ай бұрын
why not use lifespan? startup and shutdown have been deprecated.
@codingwithroby7 ай бұрын
My new videos use lifespan.
@Optimusjf9 ай бұрын
Excelent
@codingwithroby9 ай бұрын
Thank you ❤️
@oktay9784 Жыл бұрын
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 Жыл бұрын
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.