How should I interpret the output of the ghc heap profiler?

后端 未结 3 816
无人及你
无人及你 2021-02-01 18:57

I have a server process implemented in haskell that acts as a simple in-memory db. Client processes can connect then add and retrieve data. The service uses more memory than I

3条回答
  •  独厮守ぢ
    2021-02-01 19:06

    Not everything is included in the profile by default, for example threads and stacks. Try with +RTS -xT.

提交回复
热议问题