按键列表上的Firebase .index

时间:2017-03-22 07:52:55

标签: android firebase firebase-realtime-database firebase-security

我有一个包含其成员的数据列表。成员按以下格式列出了用户ID列表:

FirebaseDatabase.getInstance().getReference().child("list").orderByChild("members/" + FirebaseAuth.getInstance().getCurrentUser().getUid()).equalTo(true);

我正在尝试使用以下查询检索user1列表:

function order_by_points($a, $b){
if ($a['points'] == $b['points'])

    // sort the higher points first:
    return $a['points'] < $b['points'] ? 1 : -1;
}

要查询1000多条记录列表,需要5秒以上。如何在哪个级别定义索引以提高检索速度?

0 个答案:

没有答案