Hi ArangoDB Users,

I have been performance testing on custom functions and i find it very 
slow. Is it expected or something tuning can be done here?

Stats:
"Coll1" collection has 1.3million documents.

Just to test the function call i have created a blank function which 
returns a constant.

require("org/arangodb/aql/functions").register("myfunctions::fun1",
  function (cursor) {
    return 10;
  });


*Following update statement takes 80Sec.*

UPDATE outVertex WITH {value:myfunctions::fun1(map)} IN coll1


*Following update statement takes 10Sec*

UPDATE outVertex WITH {value:10} IN coll1


-- 
You received this message because you are subscribed to the Google Groups 
"ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to