Explain Improvements
Explaining AQL queries becomes even easier in ArangoDB 2.8. While previous versions required writing a hard-to-memorize command like
require("org/arangodb/aql/explainer").explain(query);
to explain an AQL query from the ArangoShell, 2.8 reduces this task to a mere
db._explain(query);
Apart from that, explain in 2.8 is smarter when confronted with very lengthy query strings, and with queries that contain huge hard-coded string, array, or object values.
