-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
32 lines (28 loc) · 873 Bytes
/
README
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
incdb - incrementally developed database system
Steps:
* Can save a data into tablespace file
* Can save multiple data into tablespace file
* Can see all the data in tablespace file in raw format (JSON)
* Can see all the data in tablespace file in neat format
* Can filer data by key (equality match)
* Can limit the data
* Can specify the data offset
* Can specify the data order (Ascending/Descending)
* Can create multiple table
* Can specify schema (with only simple types)
* Can create catalog
* Can read simple SQL
* Can run as server
* Can store data on buffer cache
* Can read data from buffer cache if exists
* Can write WAL
* Can recover data from WAL on launch
* Can do checkpoint
* Can do join
* Can use subquery
* Can support more types on schema
* Can do MVCC transaction
* Can create single column index
* Can use single column index
Usage:
$ ./usage.sh