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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -