Add MongoDB support

The Basics
- insert
- find
This commit is contained in:
Justin Chu
2020-05-18 12:33:08 -04:00
parent 3490578b20
commit 9cf6cd9953
11 changed files with 537 additions and 0 deletions

View File

@@ -98,6 +98,11 @@
<version>3.12.117-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>driver-mongodb</artifactId>
<version>3.12.117-SNAPSHOT</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>io.nosqlbench</groupId>-->
@@ -245,6 +250,19 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>with-mongodb</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>driver-mongodb</artifactId>
<version>3.12.117-SNAPSHOT</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>build-nb-appimage</id>
<activation>