I have a java method that returns a byte array and the size can very from few KB to a few hundred MB.
I want to make this method available for remote execution maintaining good performance so that clients can get the data and process it further.
I looked at Apache Thrift, ICE, and zeromq so far but i was curious to find something which can be used as library (jar) alone in a all java/spring environment involving a standalone application. Is there any such thing available, i would appreciate any recommendation on this subject.
Thank you