I have a serialized object that I load into memory to use it as a cache for retrieving data. I am thinking of using Apache Ignite to scale my application so that I can distribute the object over multiple nodes. However, when trying to save the object in a single ignite cache, my program uses around 8.5GB of memory. Without Apache Ignite (i.e loading it directly to memory and running computations on the object) my program uses only 1.5GB of memory. So I am wondering how is it using Ignite increases the memory usage by 8x as that seems to be very high. And what can I do to reduce the memory size?
Here is my ignite configuration xml https://pastebin.com/tejnqVK2 P.S I am using ignite with spring data. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
