我有一个包含其成员的数据列表。成员按以下格式列出了用户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秒以上。如何在哪个级别定义索引以提高检索速度?