net.reactivecore

mongofaker

package mongofaker

Visibility
  1. Public
  2. All

Type Members

  1. case class MongoConfiguration(port: Option[Int] = None, bindIp: Option[String] = None, dataDir: Option[String] = None, executable: Option[String] = None, extraArguments: List[String] = List("--nojournal")) extends Product with Serializable

    Configuration for running MongoDB.

    Configuration for running MongoDB.

    port

    port to listen on, if set to none a free port will be used.

    bindIp

    ip to listen on, if set to none 127.0.0.1 will be used

    dataDir

    database directory. If set to none a temporary directory will be used.

    executable

    'mongod' executable. If set to none the one from the path will be used.

    extraArguments

    a list of extra arguments to be added to mongod. Default is "--nojournal" as this drastically reduces startup time on 64bit systems.

  2. class MongoFakerException extends Exception

    Base class for MongoFakerException Created by nos on 23.04.14.

  3. class MongoInstance extends AnyRef

    A instance of the MongoDB.

    A instance of the MongoDB. The instance is usually running until stopped.

Value Members

  1. object MongoInstance

    Starts up MongoInstances.

Ungrouped