c# - Send large byte arrays between AppDomains in the same process -
I am creating a network server and starting many appendemen on the server for which request is made. What would be the fastest way to send a request payload to one of the app domains for processing?
- Read from the socket in the byte array in the payload and martial it.
- From the Marshall Network stream (emanating from Marshall BearFrays) to App Doman.
- Read the payload. Decoding it in Objects Marshall decoded objects.
- Use designated pipes to move the byte array.
- Use loopback sockets.
- Perhaps there is a way to martial a socket connection?
Most irreversible objects are created in decoding which is used to complete the client request and the appodeman then creates a response and makes it back on the Masters Appendaman, Sends back socket
The method should prefer less memory than the CPU.
WCF is not an option.
Comments
Post a Comment