Is your feature request related to a problem? Please describe.
Memory passed into channels is GC collected, which leads to extensive and suboptimal heap usage.
Channels operate with ReadOnlySequance that is not convenient and sometimes leads to copying.
Describe the solution you'd like
Measure allocations and heap size
Upgrade channels with ref counting and Span interface.
Describe alternatives you've considered
Additional context
Is your feature request related to a problem? Please describe.
Memory passed into channels is GC collected, which leads to extensive and suboptimal heap usage.
Channels operate with ReadOnlySequance that is not convenient and sometimes leads to copying.
Describe the solution you'd like
Measure allocations and heap size
Upgrade channels with ref counting and Span interface.
Describe alternatives you've considered
Additional context