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.
对于非常大的数据集,是否可以将 scalikejdbc 查询的结果作为Stream? 即光标在哪里保持打开直到流用完以节省内存使用?如果是这样,怎么做?
Stream
foreach操作可以帮助你。http://scalikejdbc.org/documentation/operations.html#foreach-operation
foreach
您可以通过 session.toStatementExecutor 返回您自己的迭代器,但是您必须手动关闭事物或将语句和会话包装在一个对象中,然后您可以在完成后调用 close。