Reputation: 2570
Taken from this SO answer:
@Query("{}") Stream<Alarm> findAllByCustomQueryAndStream();
I'm trying to understand how would that work for a large collection? Does this utilize MongoDB cursor?
Upvotes: 0
Views: 181
Reputation: 14490
All find queries use cursors..
Upvotes: 1