2

当我做这样的嵌套查询时

FOR f in friends 
  FOR l in locations 
     FILTER l.friends_id == f.id
RETURN {'friends':f, 'locations':l}

(3484 个结果)。

响应很慢(在 7 到 10 秒之间)通过 Web 界面和 arangosh 返回结果

我的担心:这个响应时间是不是太大了?生产数据库会比这大得多,并且会带来性能问题。

任何想法?问候!

4

1 回答 1

2

我尝试了以下方法:

arangosh [_system]> db._create("users");
[ArangoCollection 1252513721, "users" (type document, status loaded)]

arangosh [_system]> db._create("locations");
[ArangoCollection 1252644793, "locations" (type document, status loaded)]

arangosh [_system]> db._query("FOR i IN 1 .. 10000 INSERT { 'id': i, 'name': 'Name' } INTO users").toArray()
[ ]

arangosh [_system]> db._query("FOR i IN 1 .. 10000 INSERT { 'friends_id': i, 'name': 'Name' } INTO  locations").toArray()
[ ]

arangosh [_system]> db.locations.ensureHashIndex("friends_id")

var a = db._query("FOR f IN users FOR l IN locations FILTER l.friends_id == f.id RETURN { 'u': f, 'l': l}")

这将很快返回 1000 条记录。

您可以执行“ensureHashIndex”并重试吗?现在是不是更快了?

于 2014-07-17T07:56:49.587 回答