Packages

  • package root
    Definition Classes
    root
  • package quasar
    Definition Classes
    root
  • package physical
    Definition Classes
    quasar
  • package mongodb
    Definition Classes
    physical
  • package accumulator
    Definition Classes
    mongodb
  • $addToSet
  • $avg
  • $first
  • $last
  • $max
  • $min
  • $push
  • $sum
  • AccumOp
  • package expression
    Definition Classes
    mongodb
  • package fs
    Definition Classes
    mongodb
  • package optimize
    Definition Classes
    mongodb
  • package planner
    Definition Classes
    mongodb
  • package workflow

    A Workflow is a graph of atomic operations, with WorkflowOps for the vertices.

    A Workflow is a graph of atomic operations, with WorkflowOps for the vertices. We crush them down into a WorkflowTask. This crush gives us a location to optimize our workflow decisions. EG, A sequence of simple ops may be combined into a single pipeline request, but if one of those operations contains JS, we have to execute that outside of a pipeline, possibly reordering the other operations to avoid having two pipelines with a JS operation in the middle.

    We also implement the optimizations atomic http://docs.mongodb.org/manual/core/aggregation-pipeline-optimization/ so that we can build others potentially on top of them (including reordering non-pipelines around pipelines, etc.).

    Definition Classes
    mongodb
  • package workflowtask
    Definition Classes
    mongodb

package accumulator

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. accumulator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class AccumOp[A] extends AnyRef

Value Members

  1. def groupBson[EX[_]](g: AccumOp[Fix[EX]])(implicit arg0: Functor[EX], exprOps: Uni[EX]): Bson
  2. val groupBsonƒ: (AccumOp[Bson]) ⇒ Bson
  3. def rewriteGroupRefs[EX[_]](t: AccumOp[Fix[EX]])(applyVar: slamdata.Predef.PartialFunction[DocVar, DocVar])(implicit arg0: Functor[EX], exprOps: Uni[EX]): AccumOp[Fix[EX]]
  4. object $addToSet
  5. object $avg
  6. object $first
  7. object $last
  8. object $max
  9. object $min
  10. object $push
  11. object $sum
  12. object AccumOp

Inherited from AnyRef

Inherited from Any

Ungrouped