c# - Windows service split to multiple services to reduce load on it, but all services use a common dll for processing. Does it help reduce load? -
i'm trying reduce load on windows service splitting load pie multiple services, on same server box. each of service uses same dll, shared between 5 windows service, perform underlying processing.
model of distribution of load / load-balancing make sense?
better off, if deploy each service own processor.dll? thanks
if understand question correctly, asking if sharing dll affect load balancing of app. in, "am running 2 instances if i'm sharing dll?"
in case no not, there no difference if both processes using exact same folder/dll or exe file. there no need deploy different files each service.
every time start service, i'm assuming windows service, new process created in complete isolation.
Comments
Post a Comment