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
this sounds like a nice improvement, thanks!
Hazelcast does use compression for Java serialization only -> SubZero will have to do it on its own, but it should be simple enough.
@jerrinot Hi, can you please tell me how to add compression when I change the default serializer to CompatibleFieldSerializer? Please, I really need your help.
I am not able to see the byte array object compressed by kryo it is having same size as normal serialization .
public class ImagePojo {
}
SubZero.useForClasses(cfg, ImagePojo.class);
HazelcastInstance hzInstance = Hazelcast.newHazelcastInstance(cfg);
Please suggest.
I was thinking it will be using these package to compress:
import java.util.zip.DeflaterOutputStream;
import java.util.zip.InflaterInputStream;
The text was updated successfully, but these errors were encountered: