You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
Today we're using System.IO.Channels as the server side abstraction but there are some fundamental problems around buffer pooling and memory management. We basically are unable to safely use pooled buffers today since we don't know when we should dispose them. Pipelines solves this issue with a few caveats:
- We need to support multiple producers writing to the same socket (in SignalR). (supported with f21f503)
The text was updated successfully, but these errors were encountered:
Today we're using System.IO.Channels as the server side abstraction but there are some fundamental problems around buffer pooling and memory management. We basically are unable to safely use pooled buffers today since we don't know when we should dispose them. Pipelines solves this issue with a few caveats:
The text was updated successfully, but these errors were encountered: