-
Notifications
You must be signed in to change notification settings - Fork 21
Description
I have been looking this over and I cannot seem to figure out if this is possible:
1.) Can I call RServe rapidly with different threads from C# ThreadPool? When I try to do it, I seem to be getting this error result:
"Additional information: Recieved an unknown command parameter type from the server:16."
2.) Is there another way I should do this? Should I attempt to launch a few RServe daemons and then send multiple requests to each?
I'm attempting to send multiple lists of a window of 200 numbers to do the same calculation. Basically I save 210 numbers, and then want to pass data with these indices to perform the same calculation (sliding 200 length window of data points): I send these "in parallel"-
[0:199]
[1:200]
[2:201]
[3:202]
etc.
*IF I do these calculations "in line" where the first blocks the rest (without the ThreadPool or using Threading of some sort) my calculation might be too slow. I appreciate your help.
Thanks,
Mike P. Sopko