Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/12/08 14:55:51 (16 years ago)
Author:
gkronber
Message:

Improved loading speed of agent and results list by lazily loading and extracting rawdata of operator graphs and result items (ticket #249)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/RunScheduler.cs

    r497 r503  
    7474        scope.AddVariable(new Variable("AgentId", new IntData((int)entry.Id)));
    7575        scope.AddVariable(new Variable("CedmaServerUri", new StringData(serverUri)));
    76         IOperatorGraph opGraph = (IOperatorGraph)PersistenceManager.RestoreFromGZip(entry.RawData);
     76
     77        byte[] rawData = database.GetAgentRawData(entry.Id);
     78        IOperatorGraph opGraph = (IOperatorGraph)PersistenceManager.RestoreFromGZip(rawData);
    7779
    7880        PatchLinks(opGraph, new Dictionary<long, IOperator>());
Note: See TracChangeset for help on using the changeset viewer.