Ryan J. Yoder
Ryan J. Yoder
I would like that logic abstracted away, instead of making multiple calls to view.Get. Something like this: ``` viewIter, err := db.View("design-view").Iter("view", params) for row := range viewIter { //...
Yes since couchdb doesn't support streaming that's why this feature would be so helpful. Something like this is what I'm thinking. ``` // Iter returns a chan of Rows. func...
Maybe it wasn't clear from the code, but one major advantage of sending them over a chan is that the full data set is never in memory. If I read...
I would love to take a crack at this. Currently the snap I built, seems to work. I've tested the basic features such as starting/stopping containers, downloading images, etc (on...
Just a quick update, it appears the biggest change that needs to be made is configuration. I'm trying to understand if there's a use case for running the app as...