본문 바로가기
반응형

golang5

go lang .. 상속기능이 없다니. 상속 기능이 없다. 다른 언어에서 사용하던 상속기능이 없다. 중복코딩 최소화, 코딩의 단순화가 아쉽다. 엄청난 코딩양이 존재한다. 그래서 팀원들 front-end back-end 개발에 이렇게 시간이 많이 걸리는구나. 싶다. 단순한 웹서버 기능이 아니라면 golang은 말리고 싶다. 좀더 개발해보면 알겠지만 장점과 단점을 다 알게 될 것이다. 2021. 8. 3.
Amazon SQS SNS Amazon AWS SQS SNS 아래의 github 오픈소스와 유튜브 동영상으로 go lang 테스트를 해보면 동작원리를 구축 테스트해볼 수 있습니다. 개념 자체는 어려운 게 아니라서 테스트는 쉽습니다. 시스템에 데이터 처리량이 많아지면 쓰레드나 폴링, 분산처리에 신경쓰면 되겠습니다. 이 부분이 어렵겠죠. https://github.com/aws/aws-sdk-go https://www.youtube.com/watch?v=iKC9ctbStU0&t=1221s&ab_channel=GoDays https://github.com/borlinp/amazon-sns-sqs borlinp/amazon-sns-sqs Example of using Go with Amazon SNS and SQS. Contribute .. 2021. 7. 15.
go mod 캐시 삭제 go mod 캐시 삭제 사내 네트워크에서 git 버전 변경이나 저장소 변경 등으로 사용중이 go.mod 의 변화가 있을때 빌드시 다음과 같은 패키지를 가져오지 못하는 403 에러가 발생한다. $ go: github.aaa.com/ysoftman/sample@v0.1: unrecognized import path "github.aaa.com/ysoftman/sample" (https fetch: Get https://github.ysoftman.com/ysoftman/sample?go-get=1: Forbidden) proxy 환경 변수 중 no_proxy 에 추가한다. $ export no_proxy=github.aaa.com,github.bbb.com 참고로 패키지 경로를 찾지 못하는 경우 https:.. 2021. 1. 4.
mac에서 sciter-sdk 설치하기 if you have following error message, go and download sciter-sdk [http://sciter.com/download/]. "[sciter-x-api.c] Unable to load library: dlopen(sciter-osx-64.dylib, 5): image not found" And then, click and move to preference > language and framework > go > go modules. Now, fill it up. environments : "DYLD_LIBRARY_PATH=/설치 경로/sciter-sdk/bin.osx" intelliJ IDEA 나 vscode를 사용하신다면 환경변수 선언도 해주시기 바랍니다. .. 2020. 12. 24.
IntelliJ Golang 연동할 때 에러 IntelliJ Golang 연동할 때 에러 # trouble occured GOROOT=/Users/baegyeonghwan/sdk/go1.14beta1 #gosetup GOPATH=/Users/baegyeonghwan/go #gosetup /Users/baegyeonghwan/sdk/go1.14beta1/bin/go list -m -json all #gosetup go: github.com/appleboy/gin-jwt/v2@v2.6.2 requires github.com/appleboy/gofight/v2@v2.1.1 requires github.com/astaxie/beego@v1.11.1 requires github.com/belogik/goes@v0.0.0-20151229125003-e54d7.. 2020. 1. 17.
반응형