Hello.
I'm using one WCF to collect status from different service.
ratio of 2-3 statuses per second.
statuses goes into DB.
in order to query the DB for these statuses with different parameters, would you use the same WCF or create new one?
Thanks.
Loading
DiegoPosted Jan 17, 2011, 6:27 PM
You would affect performances using
another service i think, it's will consume more memory, processor...
In fact like i said before using the same service for manage a set of data is a good pattern.
ElvisPosted Jan 17, 2011, 1:48 AM
Will it not affect performances?
the rate of using the service is 2-3, sometimes more, for second.
will it not be too much for the service to handle?
or is the fact that each is creating a new instance deals with it?
thanks.
Mahesh ChandPosted Jan 16, 2011, 1:03 PM
DiegoPosted Jan 16, 2011, 12:03 PM
If you want to arrange this service i guess that the best choice been
use the same service, th is way you have WCF that manages functions with
the same data on db.
Best to do maintenance later.