Cory Mawhorter
Cory Mawhorter
for streaming, i think what they're after is something like: ```js const readStream = createReadStream(...); cache.set('foo', readStream).then(function() { // readStream was read and closed, and stream written to foo });...
No. I was just evaluating emile for fun and had no need to, sorry =/
Just tested in Chrome and FF/5 and I'm no longer seeing this issue.
A thing to keep in mind -- node.js doesn't cache dns, which means there is no guarantee dns will resolve to the same endpoint from one http request to the...
FWIW, i updated OPs to be measured-core and added actual toJSON return types, and a couple other things ```ts /** * Everything in this file is sourced from the [measured...
i'd recommend some guidance on how to add new entries. i have one to add but putting it at the top feels wrong so i'll hold off. fwiw if i...
out of curiosity what's the rollup issue?
this is an issue on node 0.12 / gaze v0.5.2 as well. i tracked the problem down to the forEachSeries iterator. wrapping iterator in a nextTick resolves the issue. https://github.com/shama/gaze/blob/v0.5.2/lib/helper.js#L52...
sometimes datasets can be large and you need to page through each individually. i'm new to go and might might be missing something obvious, but All() doesn't work in these...