-
Notifications
You must be signed in to change notification settings - Fork 14
Worker
syzer edited this page Aug 29, 2014
·
6 revisions
All the machines that connects to server to do the job are called workers. This will probably be browsers.
- Connect to the server
- Wait for tasks.
- For each task, start new thread and perform the work.
- When it is ready, report results to server.
- Back to number 2.
Bonus points:
- Report to server about our capacity. (If we can run another thread, or not.)
- Workers might authenticate too (verified workers might be needed for some precious data.)
- Authenticated workers will receive point based on computation power and time offered to server