Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 10 and Version 11 of Documentation/DevelopmentCenter/IntegrateHeuristicLab


Ignore:
Timestamp:
01/29/20 16:42:44 (4 years ago)
Author:
gkronber
Comment:

add a note on performance difference between server and workstation gc

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/DevelopmentCenter/IntegrateHeuristicLab

    v10 v11  
    123123Note that in HeuristicLab 3.3.14 and earlier the Start() method was non-blocking and you have to use a WaitHandle such as an [https://msdn.microsoft.com/en-us/library/system.threading.autoresetevent(v=vs.110).aspx AutoResetEvent] to avoid terminating the application prematurely.
    124124
     125== Performance issues with garbage collector ==
     126HeuristicLab uses the server GC instead of the workstation GC because we have observed that the HL runs faster with server GC. This can be enabled in the App.config file of your application. Simply add
     127{{{
     128  <runtime>
     129    <gcServer enabled="true" />
     130  </runtime>
     131}}}
    125132
     133to the {{{<configuration>}}} section.