scroll
abstract fun scroll(name: String, pageSize: Int = 64, configure: ScrollBuilder.() -> Unit = {}): Flow<Record>
Stream all points (optionally filtered) as a cold Flow, transparently following the server's pagination cursor. Cancellation and backpressure are cooperative.
qdrant.scroll("docs", pageSize = 256) { filter { must { "lang" eq "en" } } }
.collect { record -> /* ... */}Content copied to clipboard
Parameters
pageSize
how many points to fetch per request.