Mono GC max-heap-size isn't documented. Is it safe to use in production?

后端 未结 2 606
半阙折子戏
半阙折子戏 2021-02-11 02:46

I need to set an upper bound to the memory used by Mono.

According to blogs it\'s possible to use the parameter max-heap-size to cap the memory usage. Accor

2条回答
  •  一向
    一向 (楼主)
    2021-02-11 03:05

    It is documented, and here's one way to get the documentation: export an invalid MONO_GC_PARAMS, start mono:

    export MONO_GC_PARAMS=xxx
    mono sample.exe
    

    and get the help:

    Warning: In environment variable `MONO_GC_PARAMS': Unknown option `xxx`. - Ignoring.
    
    MONO_GC_PARAMS must be a comma-delimited list of one or more of the following:
      max-heap-size=N (where N is an integer, possibly with a k, m or a g suffix)
      soft-heap-limit=n (where N is an integer, possibly with a k, m or a g suffix)
      nursery-size=N (where N is an integer, possibly with a k, m or a g suffix)
      major=COLLECTOR (where COLLECTOR is `marksweep', `marksweep-conc', `marksweep-par', 'marksweep-fixed' or 'marksweep-fixed-par')
      minor=COLLECTOR (where COLLECTOR is `simple' or `split')
      wbarrier=WBARRIER (where WBARRIER is `remset' or `cardtable')
      stack-mark=MARK-METHOD (where MARK-METHOD is 'precise' or 'conservative')
      [no-]cementing
      evacuation-threshold=P (where P is a percentage, an integer in 0-100)
      (no-)lazy-sweep
     Experimental options:
      save-target-ratio=R (where R must be between 0.10 - 2.00).
      default-allowance-ratio=R (where R must be between 1.00 - 10.00).
    

    As you can see max-heap-size is listed, and not in the Experimental Options. So I'd say it's safe.

提交回复
热议问题