Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sangwoo-joh committed Jul 9, 2024
1 parent 778e781 commit a095f2f
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 @@ -102,7 +102,7 @@ type control = {
문제 풀이에서는 (1) 최대한 마이너 힙만을 쓰거나, 아니면 (2) 메이저 힙을 쓰되 파편화 신경쓰지 않고 할당 속도를 높이는게 중요하다. 따라서 다음 두 가지 방법을 고려해볼 수 있다.

### 마이너 힙 최대화
예를 들어 문제의 메모리 제한이 256MB 라면, 64비트 머신에서 대략 128M 워드라고 볼 수 있다. 문제의 모든 할당이 충분히 작아서 마이너 힙을 키우면 될 것 같은 경우, 다음과 같이 세팅해볼 수 있다.
문제의 모든 할당이 충분히 작아서 마이너 힙을 키우면 될 것 같은 경우, 다음과 같이 세팅해볼 수 있다.

```ocaml
let () = Gc.set { (Gc.get ()) with Gc.minor_heap_size = 1_280_000 }
Expand Down

0 comments on commit a095f2f

Please sign in to comment.