Relative Content

Tag Archive for arangodbaql

AQL query to filter for 2 nested values

I have a document with some translations. I want to fetch two languages, from one query, instead of having to run it twice.
The reason for two is that English is the default, and will be used if the other selected language does not have a translation.

Is there a way of optimising following query for better edge case respose times?

Problem specification: I have been working on pretty large dataset of friends_with graph (3.5m users, 234m friend_with edges). User collection consist of: _key,_id,name friend_with edge collection: _key,_id,_from,_to (collection is denormalized, eg. 1->2 means also 2->1) I’m running arangoDB community on VM (32vcores, 32GB RAM, 400GB ssd). I need to effectively return list of friends of […]

Is there a way of optimising following query for better edge respose times?

Problem specification: I have been working on pretty large dataset of friends_with graph (3.5m users, 234m friend_with edges). User collection consist of: _key,_id,name friend_with edge collection: _key,_id,_from,_to (collection is denormalized, eg. 1->2 means also 2->1) I’m running arangoDB community on VM (32vcores, 32GB RAM, 400GB ssd). I need to effectively return list of friends of […]