cfal
cfal
this would be useful for our usecase, in a hacky way :) we currently use RedisManager and for many messages, we need to send the same object to different rooms....
thanks! we thought about doing this, but there's no great way to do that at the moment, because the serialization logic is inside the _publish method: https://github.com/miguelgrinberg/python-socketio/blob/main/src/socketio/redis_manager.py#L74-L87 it seems like...
@olix0r oh interesting! thanks for the tip. i was curious if it'd work with a 5-digit port number (since i think that wouldn't be a valid ipv6 address anymore?), but...
very cool, thanks for creating the issue. will take a look.
so, the server is sending a 100 processing response every 30 seconds - the files i'm sending are usually backups (10gb+) and with slow internet, it ends up taking longer...
thanks for the quick responses! > Ah, neat, and that makes sense. Thanks for the feedback. I think I will change this to a rate limit (interim responses per time...
my usecase here (and perhaps i wasn't being clear, sorry) isn't only with `PUT` - i disabled 102 Processing messages based on user-agent, and now during operations such as `MOVE`...
Partially done at v0.9.0 - forwarding to unix domain sockets is now supported.
i stumbled upon #484 and [its test](https://github.com/pelletier/go-toml/blob/643c251c4b34637fef522646c3513598cd4b90f7/unmarshaler_test.go#L2052), and noticed that in fact `UnmarshalText` does not get called when items are defined in this manner: ``` package main import ( "fmt"...
thanks for replying! makes sense, realized that this wouldn't work as i expected. I saw that BurntSushi/toml also has a `UnmarshalTOML(interface{})` function that allows for this behavior - but it...