Re: With onHeapCacheEnabled = false, BinaryOnHeapOutputStream is still used, why?

2017-09-06 Thread dkarachentsev
Hi John, BinaryHeapOutputStream is the part of binary marshaller, and it's used for object serialization only. Entry are stored in off-heap paged memory as expected. Thanks! -Dmitry. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

With onHeapCacheEnabled = false, BinaryOnHeapOutputStream is still used, why?

2017-09-05 Thread John Wilson
Hi, I'm running the CacheAPIExample below with no on-heap caching, locally using Intellij. The stack frame shows that the entry I put is written on heap (using BinaryOnheapOutputStream) and not off-heap (using BinaryOffheapOutputStream). What's going on? try (Ignite ignite =