コード例 #1
0
ファイル: RBStore.cs プロジェクト: christrotter/NCache
 public RBStore(string cacheName, string storeDataType)
 {
     this._storeDataType = storeDataType;
     _rbTree = new RedBlack(cacheName, Common.MemoryUtil.GetAttributeTypeSize(storeDataType));
 }
コード例 #2
0
ファイル: OperationLogger.cs プロジェクト: javithalion/NCache
 public OperationLogger(int bucketId, LogMode loggingMode)
 {
     _bucketId = bucketId;
     _opIndex = new RedBlack<HPTime>();
     _loggingMode = loggingMode;
 }