Hi,
One of the benefit of making the MagickImage Class serializable is that we can put the MagickImage object into caches over network. we can put them in the in process cache but when you have more than one web server you need to have distributed cache or out-of-process cache which requires the object be serializable because you need serialize to move object over network.
I tried to cache the MCP format and put that one in the memory but that format require to save and real another file .cache and also the MPC file should write and load in the same machine.
What is the best way to cache the MagickImage obejct in out-of-process cache?
One of the benefit of making the MagickImage Class serializable is that we can put the MagickImage object into caches over network. we can put them in the in process cache but when you have more than one web server you need to have distributed cache or out-of-process cache which requires the object be serializable because you need serialize to move object over network.
I tried to cache the MCP format and put that one in the memory but that format require to save and real another file .cache and also the MPC file should write and load in the same machine.
What is the best way to cache the MagickImage obejct in out-of-process cache?