일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Lint
- conf
- opensouce
- goalng
- typevar
- 유닉스의탄생
- Algorithm
- organizeImports
- 글쓰기가필요하지않은인생은없다
- restfulapi
- pep8
- 코로나백신
- GlobalInterprintLock
- httppretty
- codewar
- springboot
- loadimpact
- 조엘온소프트웨어
- flake8
- pyenv
- codewars
- python
- 오큘러스퀘스트2
- ProxyServer
- printer_helper
- vscode
- 독후감
- 규칙없음
- maxlinelength
- Golang
- Today
- Total
목록프로그래밍/GOLang (2)
일상적 이야기들.
Ini 프로그램 구동시 가장 먼저 Load 되어야할 정보들을 기록해둔다. Section, Key 로 구성이 되어있다. [property] path = "/Users/everspin/Public/company/next_gen_server_library_go/policy" fileName = "property.ini" [] 는 Secion을 의미한다. 하위는 Secion의 key를 의미한다. Code go get gopkg.in/ini.v1 package main import "gopkg.in/ini.v1" func main() { cfg, err := ini.Load("setting.ini") if err != nil { fmt.Println(err) } propertySection := cfg.Secti..
https://k6.io/ [ Load testing for engineering teams | k6 k6 is an open-source load testing tool and cloud service providing the best developer experience for API performance testing. k6.io ](https://k6.io/) 개요 "과부하테스트" 혹은 "스트레스 테스트"라는 용어를 들어보셨나요? 제품의 성능을 테스트 하기 위해서, 최악의 상황에서 제품이 어느정도 버티는지 혹은, 제품이 가진 성능의 한계를 알기 위해서 하는 테스트입니다. 네트워크를 이용하는 프로그램의 경우에는 이러한 지표가 매우 중요합니다. 실 서비스에서 익명의 수많은 유저들이 이용할 시에 서비스..