arangosh> db._routing.save({ ........> url: { match: "/hello/world" }, ........> content: { contentType: "text/plain", body: "Match No 1"} }); { "_id" : "_routing/7823", "_key" : "7823", "_rev" : "_WE2Uxea--_" } arangosh> db._routing.save({ ........> url: { match: "/hello/:name", constraint: { name: "/[a-z]+/" } }, ........> content: { contentType: "text/plain", body: "Match No 2"} }); { "_id" : "_routing/7827", "_key" : "7827", "_rev" : "_WE2Uxee--_" } arangosh> db._routing.save({ ........> url: { match: "/:something/world" }, ........> content: { contentType: "text/plain", body: "Match No 3"} }); { "_id" : "_routing/7830", "_key" : "7830", "_rev" : "_WE2Uxee--B" } arangosh> db._routing.save({ ........> url: { match: "/hi/*" }, ........> content: { contentType: "text/plain", body: "Match No 4"} }); { "_id" : "_routing/7833", "_key" : "7833", "_rev" : "_WE2Uxee--D" } arangosh> require("internal").reloadRouting()