Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/10 09:17:24 (14 years ago)
Author:
kgrading
Message:

added minor speedups and better transaction handling to the server (#828)

Location:
branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2/ApplicationConstants.cs

    r3578 r3931  
    2929  public class ApplicationConstants {
    3030
    31     public static System.Data.IsolationLevel ISOLATION_LEVEL = IsolationLevel.ReadCommitted;
     31    public static System.Data.IsolationLevel ISOLATION_LEVEL = IsolationLevel.ReadUncommitted;
    3232
    3333    public static System.Transactions.IsolationLevel ISOLATION_LEVEL_SCOPE =
    34       System.Transactions.IsolationLevel.ReadCommitted;
     34      System.Transactions.IsolationLevel.ReadUncommitted;
    3535    public static int HEARTBEAT_MAX_DIF = 120; // value in seconds
    3636    public static int JOB_TIME_TO_LIVE = 5;
  • branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2/BusinessObjects/ClientDto.cs

    r3203 r3931  
    3939    public int NrOfFreeCores { get; set; }
    4040    [DataMember]
    41     public int CpuSpeedPerCore { get; set; }
     41    public int? CpuSpeedPerCore { get; set; }
    4242    [DataMember]
    4343    public int Memory { get; set; }
     
    4545    public int FreeMemory { get; set; }
    4646    [DataMember]
    47     public DateTime Login { get; set; }
     47    public DateTime? Login { get; set; }
    4848    [DataMember]
    4949    public State State { get; set; }
Note: See TracChangeset for help on using the changeset viewer.