Method | Description | |
---|---|---|
Dispose ( ) : void | ||
Execute ( ) : |
||
Finalize ( |
Function to apply to all the results when finished.
|
|
KeepTemp ( bool keep ) : |
When true the generated collection is not treated as temporary. Specifying out automatically makes the collection permanent
|
|
Limit ( long limit ) : |
Number of objects to return from collection
|
|
Map ( |
The map function references the variable this to inspect the current object under consideration. A map function must call emit(key,value) at least once, but may be invoked any number of times, as may be appropriate.
|
|
Map ( string function ) : |
The map function references the variable this to inspect the current object under consideration. A map function must call emit(key,value) at least once, but may be invoked any number of times, as may be appropriate.
|
|
MapReduceBuilder ( |
||
Out ( String name ) : |
Name of the final collection the results should be stored in. A temporary collection is still used and then renamed to the target name atomically. |
|
Query ( |
Query filter object
|
|
Reduce ( |
The reduce function receives a key and an array of values. To use, reduce the received values, and return a result. The MapReduce engine may invoke reduce functions iteratively; thus, these functions must be idempotent. If you need to perform an operation only once, use a finalize function. |
|
Reduce ( string function ) : |
The reduce function receives a key and an array of values. To use, reduce the received values, and return a result. The MapReduce engine may invoke reduce functions iteratively; thus, these functions must be idempotent. If you need to perform an operation only once, use a finalize function. |
|
Scope ( |
Document where fields go into javascript global scope
|
|
Sort ( |
Sort the query. Useful for optimization
|
|
Verbose ( bool val ) : |
Provides statistics on job execution time.
|
public Finalize ( |
||
function | ||
return |
public KeepTemp ( bool keep ) : |
||
keep | bool | |
return |
public Limit ( long limit ) : |
||
limit | long | |
return |
public Map ( |
||
function | ||
return |
public Map ( string function ) : |
||
function | string | |
return |
public MapReduceBuilder ( |
||
mr | ||
return | System |
public Out ( String name ) : |
||
name | String | |
return |
public Query ( |
||
query | ||
return |
public Reduce ( |
||
function | ||
return |
public Reduce ( string function ) : |
||
function | string | |
return |
public Scope ( |
||
scope | ||
return |
public Sort ( |
||
sort | ||
return |
public Verbose ( bool val ) : |
||
val | bool | |
return |