cs448/p1
2019-01-19 22:20:57 -05:00
..
jdt.ls-java-project Bugfix null 2019-01-19 22:12:02 -05:00
src/main/java/cs448 Init README, bugfixes 2019-01-19 22:20:57 -05:00
target/maven-status/maven-compiler-plugin/compile/default-compile Push project 1 to test on Data 2019-01-19 19:45:18 -05:00
.gitignore Update gitignore, fixes 2019-01-19 22:08:18 -05:00
cs448p1.iml Push project 1 to test on Data 2019-01-19 19:45:18 -05:00
data_10MB.tsv Push project 1 to test on Data 2019-01-19 19:45:18 -05:00
data_30MB.tsv Push project 1 to test on Data 2019-01-19 19:45:18 -05:00
data_test.tsv Push project 1 to test on Data 2019-01-19 19:45:18 -05:00
data.db Update gitignore, fixes 2019-01-19 22:08:18 -05:00
p1-handout.pdf Push project 1 to test on Data 2019-01-19 19:45:18 -05:00
pom.xml Push project 1 to test on Data 2019-01-19 19:45:18 -05:00
README.txt Init README, bugfixes 2019-01-19 22:20:57 -05:00
run Add DB implementation 2019-01-19 20:45:55 -05:00
test Init README, bugfixes 2019-01-19 22:20:57 -05:00

(a) What have you observed to be the fastest Load operation?
    [X] Main-memory Load. [ ] MapDB Load

(b) Why do you think that load operation was faster?
    Main memory is higher on the memory hiearchy than disk.

(c) What have you observed to be the fastest Select operation?
    [ ] File Select [X] Main-memory Select. [ ] MapDB Select

(d) Why do you think that select operation was faster?
    Main memory is higher on the memory hiearchy than disk.

(e) What are the benefits of using the embedded database as backend compare to the in-
memory storage?
    Much more storage is available on disk via the embedded database than in main memory.