BoomSonK
Reuse handlers with MediatR?
I citate GPT 😄 "The side effects of using ExecuteUpdate or ExecuteDelete primarily revolve around bypassing EF Core's tracking and lifecycle mechanisms. While they offer significant performance benefits for bulk operations, they should be used cautiously in scenarios requiring tracking, validation, or business logic tied to lifecycle events."
28 replies
Bottlenecks in a SignalR Implementation for Managing Room Data?
I think that memory and resource management will be the key as each connection will take extra resources etc. The same goes with the use of an inmemory dictionary when scaling up. You could gain some optimizations by having an efficient reconnect/disconnect logic and maybe its possible in your use case to use group based broadcasting instead of each user a connection.
34 replies