Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在存储库上是否findAll()在返回之前获取所有结果?我问这个的原因是因为我OutOfMemoryException在一个相当大的数据集(磁盘上约 15 GB)上调用它。由于它返回了一个Iterable<T>我期待它进行后台批处理,以便我可以轻松地遍历整个数据集。
findAll()
OutOfMemoryException
Iterable<T>
如果该方法不允许更大的查询结果,我想我会在 JIRA 上提出问题。
目前,我们不支持分页,但想探索支持它。
请在https://jira.spring.io/browse/DATACASS输入问题
-马修