【发布时间】:2018-09-18 18:28:38
【问题描述】:
我尝试使用 Stack Exchange Explorer 简单查询获取信誉大于 5 的用户列表:
select id
from users
where reputation > 5
我只得到 50,000 行。我预计会得到数百万。有门槛吗?有什么方法可以全部获取吗?
【问题讨论】:
标签: stackexchange dataexplorer
我尝试使用 Stack Exchange Explorer 简单查询获取信誉大于 5 的用户列表:
select id
from users
where reputation > 5
我只得到 50,000 行。我预计会得到数百万。有门槛吗?有什么方法可以全部获取吗?
【问题讨论】:
标签: stackexchange dataexplorer
这是"Why can't I pull in all the SO users from Data Explorer?" on Meta Stack Exchange 的跨站点副本。
数据资源管理器 (SEDE) 限制为 50K 行。
优化您的查询或下载并改用the Data Dump。这就是数据转储的用途。
或者,您也可以access the Data Dump via Google's BigQuery -- 它也有一个 API。
【讨论】: