Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JavaScript
- spring cloud
- Webpack
- update
- Effective Java 3/e
- java
- npm
- eslint
- nodejs
- expire_logs_days
- Node
- regex
- upgrade
- MySQL
- Chunk
- migration
- Regular expression
- Express
- Effective Java
- log4j2
- current_date
- git
- REACTJS
- 정규표현식
- Spring Batch
- 퀵소트
- spring
- REACT
- mysql 5.5
- log_bin
Archives
- Today
- Total
728x90
목록browser request limit (1)
728x90
내 세상
[React] Browser HTTP connetions in Node.js
Browser 별로 fetch/Ajax 요청에 대한 Connection 제한이 있다. 이러한 이슈는 SPA 형태의 앱에서 문제를 일으킨다. (크롬 기준) 최대 6개의 API만 연결이 되기 때문에 10개의 API를 요청했을 때, 6개의 API를 먼저 처리하고 남은 4개의 API를 처리한다. 여기서 문제가 발생하는 부분은 먼저 요청한 6개의 API가 응답이 없을 때, 무작정 Max Time out (정확히 어디서 설정하는지 현재 확인 중/크롬 기준 default 120초로 추정/20.05.14)을 대기한다. 그런 다음, 남은 4개의 API 요청이 처리된다. IE 7: 2 connections IE 8 & 9: 6 connections IE 10: 8 connections IE 11: 13 connection..
Technical/React
2020. 5. 14. 19:54