Miguel Grinberg

Results 475 comments of Miguel Grinberg

Who do you expect will receive the `sio.emit` call that you placed at the bottom of the script? This call runs right when the server is starting. At that point...

You are ignoring my comment regarding eventlet. Also the log that you pasted does not agree with the code. There is no log message in the code that prints "starting...

Your server is async already (eventlet is an async framework). What you can't do is use threads mixed with it. All the activity must be contained in the one thread...

@VitoFarella I'm really not sure how else to explain. You are putting eventlet with the server in thread 2. You are asking me how to emit from thread 1. I...

@cfal for any custom needs, you can subclass `RedisManager` and replace the serialization logic with anything you like. I don't think what I'm planning here will help your case, which...

@mbwmbw1337 I'm not actively working on this right now. I intend to add this at some point, but there are other things I want to do first.

What did your server and client do while these measurements were taken? Any code you can share to help me reproduce here?

The documentation is incorrect. All the namespaces for a client connection use the same `sid`. I'll fix that.

First of all, in the JS case you are issuing two separate connections for your two namespaces, so that is why you get separate sids. On the Python client you...

> this is not a bug in the client I didn't say there was any bug. In the JS client you are issuing two separate connections. In the Python client...