taoensso / faraday

Amazon DynamoDB client for Clojure
https://www.taoensso.com/faraday
Eclipse Public License 1.0
238 stars 84 forks source link

list-tables support for > 100 tables #29

Closed marcuswr closed 10 years ago

marcuswr commented 10 years ago

dynamodb by default only returns 100 results for list-tables. This patch returns a lazy-seq of results, which continues to pull with the default batch size of 100. Note, the signature has changed, and this method no longer returns a vector.

ptaoussanis commented 10 years ago

Hi @marcuswr, thank you! Seems like a useful change to me. I'll leave you and @paraseba to work out the details (thanks Sebastián!).

Please feel free to ping me if either of you need assistance with something. Cheers :-)

paraseba commented 10 years ago

@ptaoussanis I think this PR is ready to merge. Could you merge it and publish a new version? Thanks

ptaoussanis commented 10 years ago

Sure - much appreciated, both of you!

ptaoussanis commented 10 years ago

Okay @marcuswr @paraseba, just pushed v1.4.0. As usual please report any problems. Cheers!

paraseba commented 10 years ago

Awesome, thanks @ptaoussanis