jeromew
jeromew
(Replying to https://github.com/koajs/koa/issues/196#issuecomment-192083703) What I would like to do with profiling is to have a way to profile whole koa application, even if I am using middlewares that have already...
@fl0w I think this is in line with what we are discussing (for the promise based version) but I don't know if we want a compulsory "everything-is-profiled" approach. @jonathanong I...
Hello, Thanks for the report it looks indeed like there is a mismatch in the API. Do you by chance have a simple error throwing example that we could add...
@jorgerobles, for information I managed to "extract" textures from the module without d3 by using a minimal (quick&dirty) d3 mock. ``` module.exports = dom; function dom(name) { this.name = name;...
yes no problem tha is what I did (use my own scan) do you think there could be room for an async scan in core ? or a way to...
The overriding of the core 'scan' was an error in my example ; I changed it to customScan. is there another way than attaching to the prototype ? I must...
ok thanks I found the discussion on https://github.com/caolan/highland/issues/3 and will look into it. I close this issue for now as I guess that 'async scan' is not a very high...
Regarding the "antipattern" that is mentioned in https://github.com/brianc/node-pg-copy-streams/issues/118#issue-837158501 `pgStream.end() // calling this ends the COPY command` Calling `end()` only starts the process of ending the COPY operation (it sends `CopyDone`)....
Just to make it clear this issue is for discussing a pattern that attracts some people because of the possibilities given by `pg-copy-stream` Some people want to create a long-lived...
Hello, I understand the need to find a nice streaming ingestion mechanism for long-lived streams and mega-huge ingested filed with regular visibility on the data beeing ingested (using one COPY...