Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sangwoo-joh committed Jul 9, 2024
1 parent 739983a commit 5054142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/src/garbage-collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ First Fit 할당 전략은 메모리 파편화를 줄이는데 (= 압축 횟수
- Next Fit: OCaml 4 버전의 디폴트 할당 방식. 가장 빠른 방식. 단 다양한 크기의 값에 대해서는 파편화가 심해져서 힙 압축이 자주 발생할 수 있기 때문에, 문제의 메모리 제한에 따라 힙 압축을 꺼버리는 것도 하나의 방법일 수 있다.
- First Fit: 문제 풀이에서는 쓸 일이 없는 방식이니 잊도록 하자.

결론은, 잘 모르겠으면 그냥 디폴트 할당 방식인 Best Fit을 쓰면 되고, 문제에 따라서 Next Fit + 힙 압축을 꺼버리는게 좋을 수도 있겠지만 실험이 필요해보인다.
결론은, 잘 모르겠으면 그냥 디폴트 할당 방식인 Best Fit을 쓰면 되고, 문제에 따라서는 Next Fit에 추가적인 GC 튜닝을 하면 효과를 볼 수 있을지도 모른다.

## Gc 모듈

Expand Down

0 comments on commit 5054142

Please sign in to comment.