Free cookie consent management tool by TermsFeed Policy Generator

Changeset 221


Ignore:
Timestamp:
05/07/08 00:06:12 (16 years ago)
Author:
gkronber
Message:

made the expiration time shorter to decrease probability to raise OutOfMemoryExceptions (quick fix for pspitzli meta-gp engines)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Grid/EngineStore.cs

    r219 r221  
    9090      lock(bigLock) {
    9191        // clear old results
    92         List<Guid> expiredResults = FindExpiredResults(DateTime.Now.AddHours(-1.0));
     92        List<Guid> expiredResults = FindExpiredResults(DateTime.Now.AddMinutes(-10.0));
    9393        foreach(Guid expiredGuid in expiredResults) {
    9494          results.Remove(expiredGuid);
Note: See TracChangeset for help on using the changeset viewer.