B-Trees
B-tree implementation in C++ to index documents based on numerical id's and title strings.
Public Attributes | List of all members
BTree< T, M, BlockSize >::Statistics Struct Reference

BTree usage analytics. More...

#include <BTree.hpp>

Public Attributes

unsigned int blocksRead
 Quantity of blocks read since the tree was initialized. More...
 
unsigned int blocksCreated
 Quantity of blocks created since the tree was initialized. More...
 
unsigned int blocksInDisk
 Quantity of blocks stored in disk. More...
 

Detailed Description

template<typename T, std::size_t M, unsigned int BlockSize = BLOCK_SIZE>
struct BTree< T, M, BlockSize >::Statistics

BTree usage analytics.

Member Data Documentation

template<typename T, std::size_t M, unsigned int BlockSize = BLOCK_SIZE>
unsigned int BTree< T, M, BlockSize >::Statistics::blocksCreated

Quantity of blocks created since the tree was initialized.

template<typename T, std::size_t M, unsigned int BlockSize = BLOCK_SIZE>
unsigned int BTree< T, M, BlockSize >::Statistics::blocksInDisk

Quantity of blocks stored in disk.

template<typename T, std::size_t M, unsigned int BlockSize = BLOCK_SIZE>
unsigned int BTree< T, M, BlockSize >::Statistics::blocksRead

Quantity of blocks read since the tree was initialized.


The documentation for this struct was generated from the following file: