System Design 101
github.com
System Design 101
1–10 of 45 posts
Re: System Design 101
#2Re: System Design 101
#3Re: System Design 101
#4Re: System Design 101
#5Re: System Design 101
#6I can see a recent cs grad who’s never built anything benefit immensely from this.
The bigger thing here is that it teaches you the vocabulary for you to then go on and research and form your own opinions etc.
All you need is a sound starting point and this is definitely it.
Kudos to you man.
Re: System Design 101
#7About GraphQL, I read that GraphQL is versionless, is it really versionless? If so, how? The link below says you will still need to version but we have some Graphql fans at work and they insist that it does not need to be versioned.
[0] https://medium.com/swlh/no-graphql-doesnt-magically-fix-api-...
Re: System Design 101
#8Re: System Design 101
#9Love this part. I wonder how much of the complexity of microservices and various cloud services are actually adding value on a net basis vs. resume-driven development of some bored backend engineer.
Re: System Design 101
#10Good Stuff, About GraphQL, I read that GraphQL is versionless, is it really versionless? If so, how? The link below says you will still need to version but we have some Graphql fans at work and they insist that it does not need to be versioned. [0] https://medium.com/swlh/no-graphql-doesnt-magically-fix-api-...
However, if you change the data schema around, like `user` is now `person` or something, or a mutation call changes the required params, there's no magic, you either update the clients, or add versioning.