libfoedus-core
FOEDUS Core Library
|
#include <stdint.h>
#include <algorithm>
#include <cstring>
#include <iosfwd>
#include "foedus/assert_nd.hpp"
#include "foedus/compiler.hpp"
#include "foedus/epoch.hpp"
#include "foedus/error_code.hpp"
#include "foedus/fwd.hpp"
#include "foedus/assorted/assorted_func.hpp"
#include "foedus/assorted/cacheline.hpp"
#include "foedus/memory/fwd.hpp"
#include "foedus/storage/page.hpp"
#include "foedus/storage/record.hpp"
#include "foedus/storage/storage_id.hpp"
#include "foedus/storage/masstree/fwd.hpp"
#include "foedus/storage/masstree/masstree_id.hpp"
#include "foedus/thread/fwd.hpp"
#include "foedus/xct/fwd.hpp"
#include "foedus/xct/xct_id.hpp"
Go to the source code of this file.
Namespaces | |
foedus | |
Root package of FOEDUS (Fast Optimistic Engine for Data Unification Services). | |
foedus::storage | |
Storage Manager, which implements a couple of key/value stores. | |
foedus::storage::masstree | |
Masstree Storage, 64-bit B-tries with internal B-trees. | |
Functions | |
KeyLength | foedus::storage::masstree::calculate_suffix_length (KeyLength remainder_length) __attribute__((always_inline)) |
KeyLength | foedus::storage::masstree::calculate_suffix_length_aligned (KeyLength remainder_length) __attribute__((always_inline)) |
void | foedus::storage::masstree::_dummy_static_size_check__COUNTER__ () |
Variables | |
const uint16_t | foedus::storage::masstree::kMaxIntermediateSeparators = 9U |
Max number of separators stored in the first level of intermediate pages. More... | |
const uint16_t | foedus::storage::masstree::kMaxIntermediateMiniSeparators = 15U |
Max number of separators stored in the second level of intermediate pages. More... | |
const uint32_t | foedus::storage::masstree::kMaxIntermediatePointers = (kMaxIntermediateSeparators + 1U) * (kMaxIntermediateMiniSeparators + 1U) |
Max number of pointers (if completely filled) stored in an intermediate pages. More... | |