Ideas on frameworks in .NET that can be used for job processing and notifications
- by Rajat Mehta
Scenario: We have one instance of WCF windows service which exposes contracts like:
AddNewJob(Job job), GetJobs(JobQuery query) etc.
This service is consumed by 70-100 instances of client which is Windows Form based .NET app. Typically the service has 50-100 inward calls/minute to add or query jobs that are stored in a table on Sql Server.
The…