프로퍼티 | 타입 | 설명 | |
---|---|---|---|
ValuesLazyLoadingIsOn | bool |
메소드 | 설명 | |
---|---|---|
Add ( byte key, byte value ) : byte[] |
Adds key. Overload without refs
|
|
Add ( byte &key, byte &value, bool &WasUpdated ) : byte[] | ||
Add ( byte &key, byte &value, bool &WasUpdated, bool dontUpdateIfExists ) : byte[] |
Adds key
|
|
AddPartially ( byte key, byte value, uint startIndex, long &valueStartPtr ) : byte[] |
Overload without refs
|
|
AddPartially ( byte &key, byte &value, uint startIndex, long &valueStartPtr, bool &WasUpdated ) : byte[] |
REMEMBER THAT all keys are first formed in memory and then copied to the disk, so it's not for storing movies inside of the value. For storing movies (BLOBs) will be used other approach, see docu.
|
|
ChangeKey ( byte &oldKey, byte &newKey ) : void | ||
ChangeKey ( byte &oldKey, byte &newKey, byte &ptrToNewKey, bool &WasChanged ) : void | ||
Commit ( ) : void | ||
Count ( ITrieRootNode readRootNode ) : ulong |
Can be used inside of DBreeze - concerns all read functions
|
|
Count ( bool useCache ) : ulong |
if useCache = true; uses newly created root node, else uses writing root node
|
|
Dispose ( ) : void | ||
GetKey ( byte &key, ITrieRootNode readRootNode ) : |
DBreeze compatible. Extension, which helps to READ-THREADS smartly utilize created before read-roots
|
|
GetKey ( byte key, bool useCache ) : |
if useCache = true; uses newly created root node, else uses writing root node
|
|
GetTable ( |
|
|
GetTrieReadNode ( long &dtTableFixed ) : ITrieRootNode |
Interface function which recreates every time new rootNode from itself by every new function call. and also packs root node last fixation dateTime (ROLL or COMMIT). It will be used for READ FUNC's via Transaction, they can decide if to create new instance of read root or use existing. Returns NULL is !TableIsOperable.
|
|
ITRCommit ( ) : void | ||
ITRCommitFinished ( ) : void | ||
ITRRollBack ( ) : void | ||
InsertDataBlock ( byte &initialPtr, byte &data ) : byte[] | ||
IterateBackward ( ) : IEnumerable |
||
IterateBackward ( ITrieRootNode readRootNode ) : IEnumerable |
||
IterateBackward ( bool useCache ) : IEnumerable |
||
IterateBackwardForMaximal ( ) : LTrieRow | ||
IterateBackwardForMaximal ( ITrieRootNode readRootNode ) : LTrieRow | ||
IterateBackwardForMaximal ( bool useCache ) : LTrieRow | ||
IterateBackwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey ) : IEnumerable |
||
IterateBackwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateBackwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey, bool useCache ) : IEnumerable |
||
IterateBackwardSkip ( ulong skippingQuantity ) : IEnumerable |
||
IterateBackwardSkip ( ulong skippingQuantity, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateBackwardSkip ( ulong skippingQuantity, bool useCache ) : IEnumerable |
||
IterateBackwardSkipFrom ( byte key, ulong skippingQuantity ) : IEnumerable |
||
IterateBackwardSkipFrom ( byte key, ulong skippingQuantity, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateBackwardSkipFrom ( byte key, ulong skippingQuantity, bool useCache ) : IEnumerable |
||
IterateBackwardStartFrom ( byte key, bool includeStartKey ) : IEnumerable |
||
IterateBackwardStartFrom ( byte key, bool includeStartKey, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateBackwardStartFrom ( byte key, bool includeStartKey, bool useCache ) : IEnumerable |
||
IterateBackwardStartsWith ( byte startKey ) : IEnumerable |
||
IterateBackwardStartsWith ( byte startKey, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateBackwardStartsWith ( byte startKey, bool useCache ) : IEnumerable |
||
IterateBackwardStartsWithClosestToPrefix ( byte startKey ) : IEnumerable |
|
|
IterateBackwardStartsWithClosestToPrefix ( byte startKey, ITrieRootNode readRootNode ) : IEnumerable |
|
|
IterateBackwardStartsWithClosestToPrefix ( byte startKey, bool useCache ) : IEnumerable |
|
|
IterateForward ( ) : IEnumerable |
||
IterateForward ( ITrieRootNode readRootNode ) : IEnumerable |
||
IterateForward ( bool useCache ) : IEnumerable |
||
IterateForwardForMinimal ( ) : LTrieRow | ||
IterateForwardForMinimal ( ITrieRootNode readRootNode ) : LTrieRow | ||
IterateForwardForMinimal ( bool useCache ) : LTrieRow | ||
IterateForwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey ) : IEnumerable |
||
IterateForwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateForwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey, bool useCache ) : IEnumerable |
||
IterateForwardSkip ( ulong skippingQuantity ) : IEnumerable |
||
IterateForwardSkip ( ulong skippingQuantity, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateForwardSkip ( ulong skippingQuantity, bool useCache ) : IEnumerable |
||
IterateForwardSkipFrom ( byte key, ulong skippingQuantity ) : IEnumerable |
||
IterateForwardSkipFrom ( byte key, ulong skippingQuantity, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateForwardSkipFrom ( byte key, ulong skippingQuantity, bool useCache ) : IEnumerable |
||
IterateForwardStartFrom ( byte key, bool includeStartKey ) : IEnumerable |
||
IterateForwardStartFrom ( byte key, bool includeStartKey, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateForwardStartFrom ( byte key, bool includeStartKey, bool useCache ) : IEnumerable |
||
IterateForwardStartsWith ( byte startKey ) : IEnumerable |
Always creates new root to get committed data
|
|
IterateForwardStartsWith ( byte startKey, ITrieRootNode readRootNode ) : IEnumerable |
||
IterateForwardStartsWith ( byte startKey, bool useCache ) : IEnumerable |
||
IterateForwardStartsWithClosestToPrefix ( byte startKey ) : IEnumerable |
|
|
IterateForwardStartsWithClosestToPrefix ( byte startKey, ITrieRootNode readRootNode ) : IEnumerable |
|
|
IterateForwardStartsWithClosestToPrefix ( byte startKey, bool useCache ) : IEnumerable |
|
|
LTrie ( IStorage storage ) : System |
Liana Trie
|
|
ModificationThreadId ( int transactionThreadId ) : void | ||
Remove ( byte &key ) : void | ||
Remove ( byte &key, bool &WasRemoved, bool retrieveDeletedValue, byte &deletedValue ) : void |
Removes the key
|
|
RemoveAll ( bool withFileRecreation ) : void | ||
RollBack ( ) : void |
RollBack
|
|
SelectDataBlock ( byte &initialPtr, bool useCache ) : byte[] | ||
SingleCommit ( ) : void |
Wrapper for ITransactable
|
|
SingleRollback ( ) : void |
Wrapper for ITransactable
|
|
TransactionIsFinished ( int transactionThreadId ) : void |
메소드 | 설명 | |
---|---|---|
CheckTableIsOperable ( ) : void |
Will return exception, if not. Must be called by all functions
|
|
SaveGenerationMap ( ) : void |
Technical function. Used by Fetch SYNCHRO_READ FUNCs, which use write root node, to make last in-memory changes to flash on the disk, before commit.
|
public Add ( byte &key, byte &value, bool &WasUpdated ) : byte[] | ||
key | byte | |
value | byte | |
WasUpdated | bool | |
리턴 | byte[] |
public Add ( byte &key, byte &value, bool &WasUpdated, bool dontUpdateIfExists ) : byte[] | ||
key | byte | |
value | byte | |
WasUpdated | bool | indicates that key we insert, already existed in the system and was updated |
dontUpdateIfExists | bool | When true - if value exists, we dont update it. If WasUpdated = true then we value exists, if false - we have inserted new one |
리턴 | byte[] |
public AddPartially ( byte key, byte value, uint startIndex, long &valueStartPtr ) : byte[] | ||
key | byte | |
value | byte | |
startIndex | uint | |
valueStartPtr | long | |
리턴 | byte[] |
public AddPartially ( byte &key, byte &value, uint startIndex, long &valueStartPtr, bool &WasUpdated ) : byte[] | ||
key | byte | |
value | byte | |
startIndex | uint | |
valueStartPtr | long | |
WasUpdated | bool | |
리턴 | byte[] |
public ChangeKey ( byte &oldKey, byte &newKey ) : void | ||
oldKey | byte | |
newKey | byte | |
리턴 | void |
public ChangeKey ( byte &oldKey, byte &newKey, byte &ptrToNewKey, bool &WasChanged ) : void | ||
oldKey | byte | |
newKey | byte | |
ptrToNewKey | byte | |
WasChanged | bool | |
리턴 | void |
public Count ( ITrieRootNode readRootNode ) : ulong | ||
readRootNode | ITrieRootNode | |
리턴 | ulong |
public GetKey ( byte &key, ITrieRootNode readRootNode ) : |
||
key | byte | |
readRootNode | ITrieRootNode | if null then WRITE-ROOT NODE |
리턴 |
public GetKey ( byte key, bool useCache ) : |
||
key | byte | |
useCache | bool | |
리턴 |
public GetTable ( |
||
row | ||
btKey | byte | |
tableIndex | uint | |
masterTrie | ||
insertTable | bool | Regulates if InsertTable or SelectTable was called (ability to create table if it doesn't exist) |
useCache | bool | Regulates READ table thread or WRITE table thread - visibilityscope |
리턴 | NestedTable |
public GetTrieReadNode ( long &dtTableFixed ) : ITrieRootNode | ||
dtTableFixed | long | |
리턴 | ITrieRootNode |
public InsertDataBlock ( byte &initialPtr, byte &data ) : byte[] | ||
initialPtr | byte | |
data | byte | |
리턴 | byte[] |
public IterateBackward ( ITrieRootNode readRootNode ) : IEnumerable |
||
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateBackward ( bool useCache ) : IEnumerable |
||
useCache | bool | |
리턴 | IEnumerable |
public IterateBackwardForMaximal ( ITrieRootNode readRootNode ) : LTrieRow | ||
readRootNode | ITrieRootNode | |
리턴 | LTrieRow |
public IterateBackwardForMaximal ( bool useCache ) : LTrieRow | ||
useCache | bool | |
리턴 | LTrieRow |
public IterateBackwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey ) : IEnumerable |
||
startKey | byte | |
stopKey | byte | |
includeStartKey | bool | |
includeStopKey | bool | |
리턴 | IEnumerable |
public IterateBackwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey, ITrieRootNode readRootNode ) : IEnumerable |
||
startKey | byte | |
stopKey | byte | |
includeStartKey | bool | |
includeStopKey | bool | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateBackwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey, bool useCache ) : IEnumerable |
||
startKey | byte | |
stopKey | byte | |
includeStartKey | bool | |
includeStopKey | bool | |
useCache | bool | |
리턴 | IEnumerable |
public IterateBackwardSkip ( ulong skippingQuantity ) : IEnumerable |
||
skippingQuantity | ulong | |
리턴 | IEnumerable |
public IterateBackwardSkip ( ulong skippingQuantity, ITrieRootNode readRootNode ) : IEnumerable |
||
skippingQuantity | ulong | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateBackwardSkip ( ulong skippingQuantity, bool useCache ) : IEnumerable |
||
skippingQuantity | ulong | |
useCache | bool | |
리턴 | IEnumerable |
public IterateBackwardSkipFrom ( byte key, ulong skippingQuantity ) : IEnumerable |
||
key | byte | |
skippingQuantity | ulong | |
리턴 | IEnumerable |
public IterateBackwardSkipFrom ( byte key, ulong skippingQuantity, ITrieRootNode readRootNode ) : IEnumerable |
||
key | byte | |
skippingQuantity | ulong | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateBackwardSkipFrom ( byte key, ulong skippingQuantity, bool useCache ) : IEnumerable |
||
key | byte | |
skippingQuantity | ulong | |
useCache | bool | |
리턴 | IEnumerable |
public IterateBackwardStartFrom ( byte key, bool includeStartKey ) : IEnumerable |
||
key | byte | |
includeStartKey | bool | |
리턴 | IEnumerable |
public IterateBackwardStartFrom ( byte key, bool includeStartKey, ITrieRootNode readRootNode ) : IEnumerable |
||
key | byte | |
includeStartKey | bool | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateBackwardStartFrom ( byte key, bool includeStartKey, bool useCache ) : IEnumerable |
||
key | byte | |
includeStartKey | bool | |
useCache | bool | |
리턴 | IEnumerable |
public IterateBackwardStartsWith ( byte startKey ) : IEnumerable |
||
startKey | byte | |
리턴 | IEnumerable |
public IterateBackwardStartsWith ( byte startKey, ITrieRootNode readRootNode ) : IEnumerable |
||
startKey | byte | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateBackwardStartsWith ( byte startKey, bool useCache ) : IEnumerable |
||
startKey | byte | |
useCache | bool | |
리턴 | IEnumerable |
public IterateBackwardStartsWithClosestToPrefix ( byte startKey ) : IEnumerable |
||
startKey | byte | |
리턴 | IEnumerable |
public IterateBackwardStartsWithClosestToPrefix ( byte startKey, ITrieRootNode readRootNode ) : IEnumerable |
||
startKey | byte | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateBackwardStartsWithClosestToPrefix ( byte startKey, bool useCache ) : IEnumerable |
||
startKey | byte | |
useCache | bool | |
리턴 | IEnumerable |
public IterateForward ( ITrieRootNode readRootNode ) : IEnumerable |
||
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateForward ( bool useCache ) : IEnumerable |
||
useCache | bool | |
리턴 | IEnumerable |
public IterateForwardForMinimal ( ITrieRootNode readRootNode ) : LTrieRow | ||
readRootNode | ITrieRootNode | |
리턴 | LTrieRow |
public IterateForwardForMinimal ( bool useCache ) : LTrieRow | ||
useCache | bool | |
리턴 | LTrieRow |
public IterateForwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey ) : IEnumerable |
||
startKey | byte | |
stopKey | byte | |
includeStartKey | bool | |
includeStopKey | bool | |
리턴 | IEnumerable |
public IterateForwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey, ITrieRootNode readRootNode ) : IEnumerable |
||
startKey | byte | |
stopKey | byte | |
includeStartKey | bool | |
includeStopKey | bool | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateForwardFromTo ( byte startKey, byte stopKey, bool includeStartKey, bool includeStopKey, bool useCache ) : IEnumerable |
||
startKey | byte | |
stopKey | byte | |
includeStartKey | bool | |
includeStopKey | bool | |
useCache | bool | |
리턴 | IEnumerable |
public IterateForwardSkip ( ulong skippingQuantity ) : IEnumerable |
||
skippingQuantity | ulong | |
리턴 | IEnumerable |
public IterateForwardSkip ( ulong skippingQuantity, ITrieRootNode readRootNode ) : IEnumerable |
||
skippingQuantity | ulong | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateForwardSkip ( ulong skippingQuantity, bool useCache ) : IEnumerable |
||
skippingQuantity | ulong | |
useCache | bool | |
리턴 | IEnumerable |
public IterateForwardSkipFrom ( byte key, ulong skippingQuantity ) : IEnumerable |
||
key | byte | |
skippingQuantity | ulong | |
리턴 | IEnumerable |
public IterateForwardSkipFrom ( byte key, ulong skippingQuantity, ITrieRootNode readRootNode ) : IEnumerable |
||
key | byte | |
skippingQuantity | ulong | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateForwardSkipFrom ( byte key, ulong skippingQuantity, bool useCache ) : IEnumerable |
||
key | byte | |
skippingQuantity | ulong | |
useCache | bool | |
리턴 | IEnumerable |
public IterateForwardStartFrom ( byte key, bool includeStartKey ) : IEnumerable |
||
key | byte | |
includeStartKey | bool | |
리턴 | IEnumerable |
public IterateForwardStartFrom ( byte key, bool includeStartKey, ITrieRootNode readRootNode ) : IEnumerable |
||
key | byte | |
includeStartKey | bool | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateForwardStartFrom ( byte key, bool includeStartKey, bool useCache ) : IEnumerable |
||
key | byte | |
includeStartKey | bool | |
useCache | bool | |
리턴 | IEnumerable |
public IterateForwardStartsWith ( byte startKey ) : IEnumerable |
||
startKey | byte | |
리턴 | IEnumerable |
public IterateForwardStartsWith ( byte startKey, ITrieRootNode readRootNode ) : IEnumerable |
||
startKey | byte | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateForwardStartsWith ( byte startKey, bool useCache ) : IEnumerable |
||
startKey | byte | |
useCache | bool | |
리턴 | IEnumerable |
public IterateForwardStartsWithClosestToPrefix ( byte startKey ) : IEnumerable |
||
startKey | byte | |
리턴 | IEnumerable |
public IterateForwardStartsWithClosestToPrefix ( byte startKey, ITrieRootNode readRootNode ) : IEnumerable |
||
startKey | byte | |
readRootNode | ITrieRootNode | |
리턴 | IEnumerable |
public IterateForwardStartsWithClosestToPrefix ( byte startKey, bool useCache ) : IEnumerable |
||
startKey | byte | |
useCache | bool | |
리턴 | IEnumerable |
public ModificationThreadId ( int transactionThreadId ) : void | ||
transactionThreadId | int | |
리턴 | void |
public Remove ( byte &key, bool &WasRemoved, bool retrieveDeletedValue, byte &deletedValue ) : void | ||
key | byte | |
WasRemoved | bool | indicates that value existed if true |
retrieveDeletedValue | bool | indicates if we should bind deleted value to the result |
deletedValue | byte | interesting only if WasRemoved = true and retrieveDeletedValue is true |
리턴 | void |
public RemoveAll ( bool withFileRecreation ) : void | ||
withFileRecreation | bool | |
리턴 | void |
public SelectDataBlock ( byte &initialPtr, bool useCache ) : byte[] | ||
initialPtr | byte | |
useCache | bool | |
리턴 | byte[] |
public TransactionIsFinished ( int transactionThreadId ) : void | ||
transactionThreadId | int | |
리턴 | void |