etc3 카프카가 실패시 처리하는 방법 ignore : 무시한다 retry : 재시도한다 dead lock : 다른 큐에 모아놨다가 후처리한다. 2021. 4. 1. JAVA Garbage Collection youtu.be/Fe3TVCEJhzo 배민 유투브를 통해 봤던 내용들을 정리합니다. 자바가 기준입니다. Garbage Collection JVM의 heap영역에서 사용하지 않는 객체를 삭제하는 프로세스 힙 영역에는 Object타입의 객체들이 들어간다. GC Root gc root는 stack의 데이터들, method영역의 static데이터, jni에 의해 생성된 객체들이 된다. gc root -> heap으로 찾아서 없앤다 어떻게 garbage를 찾을까유 mark and sweep, compact GC root에서부터 참조하는 객체들을 하나씩 찾아간다 reachable object, unreachable object를 찾아서 사용중인 객체들을 mark한다 unreachable 객체를 sweep(삭제)한다.. 2021. 3. 9. Master the JavaScript Interview: What is Functional Programming? medium.com/javascript-scene/master-the-javascript-interview-what-is-functional-programming-7f218c68b3a0 Master the JavaScript Interview: What is Functional Programming? “Master the JavaScript Interview” is a series of posts designed to prepare candidates for common questions they are likely to encounter… medium.com 이 페이지를 기반으로 작성함당 새로은 단어를 겁내지 마세요, 듣기보단 쉽습니다. pure functions function composition .. 2020. 10. 30. 이전 1 다음