mehrdadn

Results 24 comments of mehrdadn

Related note: you need 1 worker process per dependency depth in the computation graph, right?

Yeah, ok. IMO this should not be a constraint at all -- you should be able to run any program to completion with just 1 worker, albeit more slowly. There's...

Well personally I would do it using the completion-based notification model I'd proposed earlier, which prevents blocking control flow altogether. Another possibility is fibers (cooperative multithreading), so that wait() actually...

Uh I'm not sure unfortunately, it's been 4 years. :\

This is quite an interesting issue that in fact has nothing to do with pickling itself, but merely the timing of _when_ we are trying to pickle the function. The...

Actually... I think I've found bugs in this. :\ I'll try to update it when I get the chance (but it might be a while from now).

**Update:** I fixed the bug I had found (subframes were throwing errors). However, it's still not ideal. The problem is that chromeIPass makes the fundamentally incorrect assumption that all input...

(I'll put that on my to-do list, but it'll take me quite a while to find the time and figure it out since I'm completely unfamiliar with the source code,...

OK I found one culprit. It's the `"all_frames": true` line in `manifest.json`. The problem is that every single frame load causes jQuery to be loaded, which takes around 60 ms...