Is there a way in mongo to create user-defined Javascript functions. I have several Map/Reduce functions on the client side that i would like to use within other MR functions.
For example, several MR functions calculate all sorts of averages. I want to be able to use them like so :
function reduce(k,v)
{
if (val > myDatabaseAverage())
// ..do something
}