Alex Siryi

Results 38 comments of Alex Siryi

To better understand the issue, what's the use case?

Seems like I have been ran into this exact issue, and it is way too critical. To test this, I've made a server script that responds in 5s, and then...

I've added a method `get_next_finished` so my issue can be fixed like this: ```cpp while ((next = m_transport.get_next_finished())) { std::unordered_map::const_iterator it = m_requests.find(next); if (it != m_requests.end()) { const RequestPtr&...

I believe #13 has nothing to do with contexts. I rewrote the code to always pass a context even in these cases, and it still crashes. Found this [bug on...

You can try my prebuilt [fork](https://github.com/anthill-utils/v8py): `pip install -i https://cdn.anthillplatform.org/python v8py`

I am fine with default isolate, but perhaps there should be a way to create one from python and then pass it as argument into Context or whatever structures you...

@kokhoor When I researched this I had too many issues. You'd have to lock/release the `GIL` in order for threading to actually work. This implies many scenarios like python->js->python calls...

@armudgal just wondering who the `manylinux` thing go

So, basically, there's no `ipc://` support for now? I am trying to pair `netmq` with `pyzmq`, with no luck.

It doesn't, IPC doesn't work on Windows. It works with unix systems only (and that's fine for me).