Hi,
I have a client/server based application in which the client sends a huge number of objects to the server to process and send the results back to the client.
The network layer is built using RMI.
I'm in the process to do some optimizations in the network layer.
One of the things i was thinking about was to compress each object on the client side before sending it to the server (the same process to be done on the server side after finishing processing on the object and just before sending back to the client).
So, is there a way to compress the object (just in memory) in
Java ?
Otherwise if not, what other things do you recommend to accomplish RMI optimization ?
Please advice ...
Regards,