libfoedus-core
FOEDUS Core Library
|
#include <stdint.h>
#include <cstring>
#include "foedus/assert_nd.hpp"
#include "foedus/compiler.hpp"
#include "foedus/fwd.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/hash/hash_combo.hpp"
#include "foedus/storage/hash/hash_hashinate.hpp"
#include "foedus/storage/hash/hash_id.hpp"
#include "foedus/xct/xct_id.hpp"
Go to the source code of this file.
Classes | |
class | foedus::storage::hash::HashIntermediatePage |
Represents an intermediate page in Hashtable Storage. More... | |
class | foedus::storage::hash::HashDataPage |
Represents an individual data page in Hashtable Storage. More... | |
struct | foedus::storage::hash::HashDataPage::Slot |
Fix-sized slot for each record, which is placed at the end of data region. More... | |
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::hash | |
Hashtable Storage, a concurrent hashtable. | |
Functions | |
void | foedus::storage::hash::hash_intermediate_volatile_page_init (const VolatilePageInitArguments &args) |
volatile page initialize callback for HashIntermediatePage. More... | |
void | foedus::storage::hash::hash_data_volatile_page_init (const VolatilePageInitArguments &args) |
volatile page initialize callback for HashDataPage. More... | |