Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- spring security
- java 기술면접
- 백준 16236
- spring oauth
- 파이썬
- springboot
- JPA
- spring cloud
- Spring
- MSA
- 백준 17626
- java
- 백준
- 프로그래머스
- Spring Boot
- 백준 17779
- Coroutine
- with recursive
- Kotlin
- 백준 16719
- re.split
- 백준 파이썬
- 백준 19238
- JVM
- 백준 16235
- MySQL
- 백준 15685
- sql 기술면접
- 웹어플리케이션 서버
- 프로래머스
Archives
- Today
- Total
목록성능테스트 (1)
시작이 반
[Kotlin] SpringBoot + Coroutine 성능테스트
Tool : Jmeter 환경 : CPU 4Core 8Thread 1000명의 유저가 30초가 걸리는 api를 동시 호출 TEST1 구성 : netty + coroutine ( context : Dispatchers.IO ) @PostMapping("/api/test") suspend fun testApi():MutableMap = withContext(Dispatchers.IO){ log.info(">>>>>>>>>>>> start suspend") performService.measureTestPerform() } suspend fun measureTestPerform(): MutableMap = withContext(Dispatchers.IO) { val map = mutableMapOf() val..
Programming/Kotlin
2023. 6. 6. 20:03