cs448/p1
2019-01-20 00:30:01 -05:00
..
jdt.ls-java-project Bugfix null 2019-01-19 22:12:02 -05:00
src/main/java/cs448 Adjustments to db handling 2019-01-19 22:34:13 -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
build Add build 2019-01-19 22:22:23 -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
finish.out Update readme add finish log 2019-01-20 00:30:01 -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 Update readme add finish log 2019-01-20 00:30:01 -05:00
run Add DB implementation 2019-01-19 20:45:55 -05:00
test Update tests 2019-01-19 23:27:46 -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/faster 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/faster 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.