Bigquery
Overview Storing and querying massive datasets can be time consuming and expensive without the right hardware and infrastructure. Google BigQuery is an enterprise data warehouse that solves this problem by...
golang slice
slice에서 var bSlice []string aSlice, err := getSlice(param) // getSlice에서는 slice를 make하고 return한다 bSlice = aSlice 이렇게 하면 bSlice와 aSlice는 같은 Slice를 보고 있게 된다. bSlice[0] = "first" fmt.Print(aSlice[0]) //...
VPC and NAT
Ultimate Setup for Your Next Golang Project https://towardsdatascience.com/ultimate-setup-for-your-next-golang-project-1cc989ad2a96
VPC and NAT
VPC: https://medium.com/harrythegreat/aws-%EA%B0%80%EC%9E%A5%EC%89%BD%EA%B2%8C-vpc-%EA%B0%9C%EB%85%90%EC%9E%A1%EA%B8%B0-71eef95a7098 VPC의 기본 컴포넌트들 VPC VPC는 Virtual Private Cloud의 줄임말로 “가상 IP 네트워크” 로 이해할 수 있다. 이는 클라우드 내에 가상 데이터 센터라고 할 수 있다. VPC내에 있는 서버들끼리는...
Http connection reusing in Go
https://stackoverflow.com/questions/17948827/reusing-http-connections-in-golang