Fabian Hummel

Results 8 issues of Fabian Hummel

The BufferAllocator allocates 16mb (by default) when a new connection is created, but does not free it when the connection is closed. Why is that? Are there any solutions? Call...

I'm trying to create a "ping" functionality in a messaging client, which requires to continuously connect to a list of servers over a period of time. I noticed that the...

The BufferAllocator allocates 16mb (by default) when a new connection is created, but does not free it when the connection is closed. Why is that? Are there any solutions? Call...

I have noticed that [dynamic namespaces](https://socket.io/docs/v3/namespaces/#dynamic-namespaces) via regex are not yet implemented. Is this planned? Is there a way for custom middleware to handle this in the meantime?

enhancement
help wanted
socketio-v4
socketio-v5

## Motivation I am developing a high performance realtime collaboration server and noticed a problem when sending / receiving multiple packets from and to the server with the default packet...

enhancement
socketio-v4
socketio-v5

The sort method fails the "__check_strict_weak_ordering_sorted" check when adding an entry to the handler list during debug mode. https://github.com/uNetworking/uWebSockets/blob/600e7fe0faf74fb54722720a6d2e3f545d99f548/src/HttpRouter.h#L304-L317 Specifically, this abort is triggered: https://github.com/llvm/llvm-project/blob/77f8297c6fdaa62121ddb108043dcaad5c45c7ad/libcxx/include/__debug_utils/strict_weak_ordering_check.h#L49 ```cpp auto app = uWS::App();...

Add a function to directly consume contexts within JSX. Inspired by React's `Context.Consumer` component, but nicely integrated with this primitive's `createContextProvider`. Tests have been added and source code + README.md...

### Describe The Problem To Be Solved The `Context` primitive adds functionality to easily create context providers through `createContextProvider`. Given the example code on the website, ... ```tsx const [CounterProvider,...