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
with ArrayPool or similar? It would take a lot of pressure off the GC, especially for values larger than 85KB that will be stored on Large Object Heap, eventually pausing your application when reclaimed.
GC pauses can become an issue if you have a high-throughput, low-latency application pushing large amounts of data.
The text was updated successfully, but these errors were encountered:
What do you think about replacing lines that could allocate large amounts of memory, like this
EnyimMemcachedCore/Enyim.Caching/Memcached/Protocol/Text/GetHelper.cs
Line 51 in 2b27236
with ArrayPool or similar? It would take a lot of pressure off the GC, especially for values larger than 85KB that will be stored on Large Object Heap, eventually pausing your application when reclaimed.
GC pauses can become an issue if you have a high-throughput, low-latency application pushing large amounts of data.
The text was updated successfully, but these errors were encountered: