Data consistency
global ordering 이 없는 경우: 카톡으로 질문도 안떴는데 대답이 먼저 보이는 경우 Eventual consistency: https://stackoverflow.com/questions/10078540/eventual-consistency-in-plain-english https://hackernoon.com/eventual-vs-strong-consistency-in-distributed-databases-282fdad37cf7
AWS Sessions
https://eksworkshop.com/logging/ In this Chapter, we will deploy a common Kubernetes logging pattern which consists of the following: Fluentd is an open source data collector providing a unified logging layer, supported...
Web Developer 101
https://engineering.videoblocks.com/web-architecture-101-a3224e126947 cmd+ shift+ f => find in path (goland) 코드 어딧는지 찾기 딱좋다!
Panic Recover
// The recover built-in function allows a program to manage behavior of a // panicking goroutine. Executing a call to recover inside a deferred // function (but not any function...
Go JSON
https://medium.com/@masnun/making-http-requests-in-golang-dd123379efe7 https://stackoverflow.com/questions/17156371/how-to-get-json-response-from-http-get/31129967#31129967 https://www.reddit.com/r/golang/comments/4n46oo/question_does_jsondecode_jsonnewdecoder_close_the/ https://www.sohamkamani.com/blog/2017/10/18/parsing-json-in-golang/#parsing-json-strings 따라서 문자열을 ascii로 전송하혀면 string > utf8 > base64 또는 string > euckr > base64 등의 조합으로 표현 가능합니다.