notes/pl/hs/ghc/internals/rts.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

24 строки
723 B
Plaintext

2021
https://blog.noredink.com/post/666020751977168896/tuning-haskell-rts-for-kubernetes-part-1
RTS:
http://notepad.mmakowski.com/Advanced%20Haskell
http://www.aosabook.org/en/ghc.html
http://www.reddit.com/r/haskell/comments/26qshw/the_ghc_runtime_system_pdf/
http://www.scs.stanford.edu/14sp-cs240h/slides/ghc-rts.pdf
RTS options:
http://www.haskell.org/ghc/docs/latest/html/users_guide/runtime-control.html
GC:
http://hackage.haskell.org/trac/ghc/wiki/GarbageCollectorNotes
System.Mem.performGC :: IO ()
ghc-gc-tune
Scheduler:
http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Scheduler
http://blog.ezyang.com/2013/01/the-ghc-scheduler/
FFI:
http://blog.ezyang.com/2010/07/safety-first-ffi-and-threading/