Caching is one of the operations that we always do when building software. We put an object that will be faster to be retrieved to improve the performance of our software. But likewise, because it is a Software Architecture. Choosing one side will always have risks. If the system cache the wrong data, of course, … Continue reading Create a WebJob to Ensure Cache is Valid
Tag: Architecture
Architecture: Don’t Marry The Framework
I've read a book from Robert C. Martin book title Clean Architecture: A Craftsman's Guide to Software Structure and Design and got amazed by one statement in the book: Don't marry the framework.Robert C. Martin Based on Uncle Bob's opinion, coupled a third party library directly into our code is not a wise decision to … Continue reading Architecture: Don’t Marry The Framework