1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/*! @mainpage Reference Guide
WiredTiger is an high performance, scalable, production quality, NoSQL,
Open Source extensible platform for data management.
WiredTiger supports row-oriented storage (where all columns of a row are
stored together), column-oriented storage (where columns are stored in
groups, allowing for more efficient access and storage of column
subsets) and log-structured merge trees (LSM), for sustained throughput
under random insert workloads.
WiredTiger includes ACID transactions with standard isolation levels and
durability at both checkpoint and fine-grained granularity.
WiredTiger can be used as a simple key/value store, but also has a
complete schema layer, including indices and projections.
WiredTiger should be generally portable to any 64-bit system supporting
the ANSI C99, POSIX 1003.1 and POSIX 1003.1c (threads extension) standards.
For more information on the WiredTiger architecture and why it might be
right for your project, see:
- @subpage architecture
For more information about building and installing WiredTiger, see:
- @subpage install
- @subpage leveldb
For more information about writing WiredTiger applications, see:
- @subpage programming
- @subpage programming_lang_java
- @ref wt "WiredTiger API reference manual"
- @subpage performance
For more information about administrating WiredTiger databases, see:
- @subpage command_line
- @subpage admin
For release change logs and upgrading information, see:
- @subpage md_changelog
- @subpage upgrading
WiredTiger is Open Source; for more information, see:
- @subpage license
WiredTiger releases are tested on Linux, FreeBSD and OS X; for more
information, see:
- @subpage testing
To browse the WiredTiger source code repository or contact us, see:
- @subpage community
*/
|