├── .gitignore ├── bdb.rb ├── benchmark.sh ├── common.rb ├── data └── source.csv.7z ├── mongo_index.rb ├── mongo_mcolls.rb ├── plot.py ├── redis_list.rb ├── result ├── datasize.png ├── index.png ├── q30.png ├── qall.png ├── report.csv └── write.png ├── tc_bdb.rb └── tc_table.rb /.gitignore: -------------------------------------------------------------------------------- 1 | data/* 2 | result/report_old.csv 3 | -------------------------------------------------------------------------------- /bdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/bdb.rb -------------------------------------------------------------------------------- /benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/benchmark.sh -------------------------------------------------------------------------------- /common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/common.rb -------------------------------------------------------------------------------- /data/source.csv.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/data/source.csv.7z -------------------------------------------------------------------------------- /mongo_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/mongo_index.rb -------------------------------------------------------------------------------- /mongo_mcolls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/mongo_mcolls.rb -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/plot.py -------------------------------------------------------------------------------- /redis_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/redis_list.rb -------------------------------------------------------------------------------- /result/datasize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/result/datasize.png -------------------------------------------------------------------------------- /result/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/result/index.png -------------------------------------------------------------------------------- /result/q30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/result/q30.png -------------------------------------------------------------------------------- /result/qall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/result/qall.png -------------------------------------------------------------------------------- /result/report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/result/report.csv -------------------------------------------------------------------------------- /result/write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/result/write.png -------------------------------------------------------------------------------- /tc_bdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/tc_bdb.rb -------------------------------------------------------------------------------- /tc_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinhm/nosql-tsd-benchmark/HEAD/tc_table.rb --------------------------------------------------------------------------------