I have a specific DLL that contains some language processing classes and methods.
One of these methods gets a word as an argument and does some calculation about 3 sec and save the related result on a SQL-Server Db.
I want run this DLL Method on 900k words and this job may repeat every week.
How can I easily distribute this work on multiple systems to save the time using c#?
Since it’s existing code I would look for a way to split that list of 900k words.
Everything else would require much more changes.