flatMap & concatMap & flatMapSequential
- flatMap
- 입력/출력 순서가 일치하지 않는다.
- 내부 병렬처리

- concatMap
- 입력/출력 순서 일치
- 내부 순차처리
- 전체적으로 로직이 순서보장이 필요한 경우

- flatMapSequential
- 입력/출력 순서 일치
- 내부 병렬처리
- 전체적으로 순서가 필요하나, 내부처리가 순서보장이 필요없을 경우




https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=goldhosi&logNo=221250540136
– 경로: C:\Program Files\JetBrains\IntelliJ IDEA xxxx.xx.xx\bin (intellij 설치경로 하위 bin)
– 파일명: idea.properties
– 수정 사항: idea.max.intellisense.filesize=25000
(기본값은 2500으로 설정되어 있습니다.)
– 참고) help > edit custom properties 에 추가를 해도 안먹힘
commons-httpclient-xx.xx.jar 사용 시, 로깅 방법
<logger name=”httpclient.wire” level=”debug” />
org.apache.commons.httpclient.Wire 안의
public static Wire HEADER_WIRE = new Wire(LogFactory.getLog(“httpclient.wire.header”));
public static Wire CONTENT_WIRE = new Wire(LogFactory.getLog(“httpclient.wire.content”));