コード例 #1
0
 internal EnyimIndexCreator(EnyimTableCache parent, string indexKeyInCache, SearchConditions searchConditions)
 {
     this._parent          = parent;
     this._index           = new TableIndex(searchConditions);
     this._indexKey        = searchConditions.Key;
     this._indexKeyInCache = indexKeyInCache;
 }
コード例 #2
0
 internal TableLock(EnyimTableCache repository, string lockKey, TimeSpan lockTimeout)
 {
     this._cache   = repository;
     this._lockKey = lockKey;
     this._cache.LockTable(lockKey, lockTimeout);
 }