Xuanwo commented on issue #2786:
URL:
https://github.com/apache/incubator-opendal/issues/2786#issuecomment-1666688320
`Lister` is a stream, which means you can store it in memory and only call
`next` when necessary. If you want to persist the state of the lister on disk
and resume the list later, you can use
`list_with("path").start_after("last_key")`. This way, you will need to save
the last key returned by `Lister`, pass it back, and allow listing from that
point onwards.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]