Thank you, Milon, you are a light on my way. I found you when I was searching for what is the Repository pattern. Now I can build powerful and scalable distributed systems, and I understand well almost everything about DDD, modular monolithic and microservices. I got to know many libraries thanks to you and learned from a lot... I am in the first year of the College of Computer and Electronics Engineering and I did not dream of learning about all this now... I hope we meet one day. Thank you for everything.
Thank you! As always -- great presentation, great coding style and well worth a watch even if there was little new knowledgewise. I look forward to the .Net 9 Caching video!
Excellent content and very well-written code! I have a quick question about the parameter named 'factory'. What was the reasoning behind choosing this name, and are there any other potential alternatives?
Hello Milan! Excellent video! Very useful information! Congrats! By the way, do you happen to have a video that deep dives into Distributed Locking (what it is, real-world scenarios, how to implement in Redis or another cache technology)? It would be really great! See ya!
Sadly, I don't have anything touching distributed locking (so far). But I've been meaning to make some content around that 😅 While you wait, you can checkout Redlock: github.com/samcook/RedLock.net
Maybe it's worth to mention that the key is important in multi-user/tenant applications which have different security concerns per user. A "NormalUser" could have different rights as an "Administrator" for example, where a "NormalUser" would be restricted in the list of entities he/her could see. When using a multi-tenant environment, an "Organization"-part should also be added to the key (or maybe a completely separate Redis Instance). When the key doesn't take anything of that into consideration, users could get strange/forbidden results. I'm just starting to implement caching now, so am I right here, any tips?
Yes, caching and authorization (who can do/see what) is tricky. The implementation you suggested is something I've done in the past in similar situations.
Hi, can I ask something, why don't use in memory cache with redis, we should check in memory first if not found then goto redis, in that way we can save network call. I don't know, may be I am missing something because I have never seen this approach. Could you please advise?
@MilanJovanovicTech yes thank you, since HyridCache is introduced in .net 9, before .net 9 it should be using by manually combining both inmemory and redis for the low latency, this approch seems very powerful to me but it's not commonly discussed in internet don't know if there is drawback..
What if the data being cached gets updated within the 2 mins window? Since we are not updating the cache on write wouldn't we get a stale value from the cache? While I understand that we shouldn't be caching all writes but can't we do this? When writing to DB, check if the value is present in the cache. If it is present, update the value in cache, otherwise do nothing.
If a class have more than property around 20 so in entity we mark property as private and create a factory method it difficult to set all twenty property using factory
When first applying the cache on the minimal API. It works on the example because you press continue. Yourre just calling results.ok not actually returning
Want to master Clean Architecture? Go here: bit.ly/3PupkOJ
Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt
Thank you, Milon, you are a light on my way. I found you when I was searching for what is the Repository pattern. Now I can build powerful and scalable distributed systems, and I understand well almost everything about DDD, modular monolithic and microservices.
I got to know many libraries thanks to you and learned from a lot... I am in the first year of the College of Computer and Electronics Engineering and I did not dream of learning about all this now... I hope we meet one day. Thank you for everything.
You are crushing it my man 💪 Keep up the good work!
Whenever I watch your videos, I feel how poorly i write code. Thank you for all the unique and very, very practical, and useful videos.
You're most welcome! :)
Thank you Milan. Your tutorials are excellent
Glad you think so!
Thank you! As always -- great presentation, great coding style and well worth a watch even if there was little new knowledgewise. I look forward to the .Net 9 Caching video!
Much appreciated!
Thank you for sharing this on you channel. lot of new learning on you channel.
You are so welcome
Great tutorial thanks!
You're welcome!
It was awesome
Thanks for sharing 👍
Glad you liked it
nice content
Thanks!
Excellent content and very well-written code!
I have a quick question about the parameter named 'factory'. What was the reasoning behind choosing this name, and are there any other potential alternatives?
It's a factory that creates the resource if it's not in the cache, is all
Hello Milan! Excellent video! Very useful information! Congrats! By the way, do you happen to have a video that deep dives into Distributed Locking (what it is, real-world scenarios, how to implement in Redis or another cache technology)? It would be really great! See ya!
Sadly, I don't have anything touching distributed locking (so far). But I've been meaning to make some content around that 😅 While you wait, you can checkout Redlock: github.com/samcook/RedLock.net
@@MilanJovanovicTech No problem, my lad :) You just did help a whole bunch by giving me this pointer! Thank you once again :)
Hey Milan, can you do a video about EF Core and Temporal tables?
At some point, yeah
Maybe it's worth to mention that the key is important in multi-user/tenant applications which have different security concerns per user.
A "NormalUser" could have different rights as an "Administrator" for example, where a "NormalUser" would be restricted in the list of entities he/her could see.
When using a multi-tenant environment, an "Organization"-part should also be added to the key (or maybe a completely separate Redis Instance).
When the key doesn't take anything of that into consideration, users could get strange/forbidden results.
I'm just starting to implement caching now, so am I right here, any tips?
Yes, caching and authorization (who can do/see what) is tricky. The implementation you suggested is something I've done in the past in similar situations.
Hi, can I ask something, why don't use in memory cache with redis, we should check in memory first if not found then goto redis, in that way we can save network call.
I don't know, may be I am missing something because I have never seen this approach. Could you please advise?
HybridCache will take care of this
@MilanJovanovicTech yes thank you, since HyridCache is introduced in .net 9, before .net 9 it should be using by manually combining both inmemory and redis for the low latency, this approch seems very powerful to me but it's not commonly discussed in internet don't know if there is drawback..
hey Milan, can you please let us know the theme you're using?
It's ReSharper
What if the data being cached gets updated within the 2 mins window?
Since we are not updating the cache on write wouldn't we get a stale value from the cache?
While I understand that we shouldn't be caching all writes but can't we do this? When writing to DB, check if the value is present in the cache. If it is present, update the value in cache, otherwise do nothing.
Invalidate the cache and update (write through).
Or just invalidate the cache and let it be cached again on next request.
@@MilanJovanovicTech Thank you! That makes sense.
How to use factory pattern for large property?
What do you mean by larger property?
If a class have more than property around 20 so in entity we mark property as private and create a factory method it difficult to set all twenty property using factory
@@DesaiBharat702 Builder pattern is one option, or you could consider the class is doing too much if there are too many properties.
Would you cache the dto or the entity?
Preferably DTO
Which project should I put `CacheAside` class in Clean-Architecture?
Where do we place external concerns?
@@MilanJovanovicTech Oh, I guess Infrastructure...? Then, should I put it inside Persistence project?
@@phw1009 I would usually place it inside Infrastructure
You missed a return if your data was fetched from cache
Where?
When first applying the cache on the minimal API. It works on the example because you press continue.
Yourre just calling results.ok not actually returning
Minute 7:57
@@JoaoSilva-rz4js Oh lol, you're right. Typo.
I need a sample Blazer project with a report generate. pls
Won't find it in this video
😂@@MilanJovanovicTech