我需要InstrumentInfo
经常更新课程。我从一个线程更新这个类并从另一个线程访问(读取)。
我有Instrument
课。Instrument
对于我需要维护的每个课程InstrumentInfo
:
// omit class Instrument as not improtant
public class InstrumentInfo
{
public string Name { get; set; }
public TradingStatus Status { get; set; }
public decimal MinStep;
public double ValToday;
public decimal BestBuy;
public decimal BestSell;
}
public class DerivativeInfo : InstrumentInfo
{
public DateTime LastTradeDate { get; set; }
public DateTime ExpirationDate { get; set; }
public string UnderlyingTicker { get; set; }
}
// i do have several more subclasses
我确实有两个选择:
InstrumentInfo
每个只创建一个Instrument
。当某些字段更新时,例如BestBuy
只更新该字段的值。客户端应该InstrumentInfo
只获取一次并在整个应用程序生命周期内使用它。- 在每次更新时创建
InstrumentInfo
. 客户每次都应获取 InstrumentInfo 的最新副本。
1
我确实需要锁定,因为不能decimal
DateTime
string
保证更新是原子的。但我不需要恢复对象。
2
我根本不需要锁定,因为更新reference
是原子的。但我可能会使用更多内存,并且我可能会为 GC 创建更多工作,因为每次我需要实例化新对象(并初始化所有字段)。
1
执行
private InstrumentInfo[] instrumentInfos = new InstrumentInfo[Constants.MAX_INSTRUMENTS_NUMBER_IN_SYSTEM];
// invoked from different threads
public InstrumentInfo GetInstrumentInfo(Instrument instrument)
{
lock (instrumentInfos) {
var result = instrumentInfos[instrument.Id];
if (result == null) {
result = new InstrumentInfo();
instrumentInfos[instrument.Id] = result;
}
return result;
}
}
...........
InstrumentInfo ii = GetInstrumentInfo(instrument);
lock (ii) {
ii.BestSell = BestSell;
}
2
执行:
private InstrumentInfo[] instrumentInfos = new InstrumentInfo[Constants.MAX_INSTRUMENTS_NUMBER_IN_SYSTEM];
// get and set are invoked from different threads
// but i don't need to lock at all!!! as reference update is atomic
public void SetInstrumentInfo(Instrument instrument, InstrumentInfo info)
{
if (instrument == null || info == null)
{
return;
}
instrumentInfos[instrument.Id] = info;
}
// get and set are invoked from different threads
public InstrumentInfo GetInstrumentInfo(Instrument instrument)
{
return instrumentInfos[instrument.Id];
}
....
InstrumentInfo ii = new InstrumentInfo {
Name = ..
TradingStatus = ...
...
BestSell =
}
SetInstrumentInfo(instrument, ii); // replace InstrumentInfo
所以你怎么看?我想使用方法2
,因为我喜欢没有锁的代码!lock
我是否正确,因为我只是替换参考,所以我根本不需要?你同意这2
是首选吗?欢迎任何建议。