Can I run F # agents on multiple machines?

Can I run F # agents on multiple machines as a cluster?

+7
source share
1 answer

Yes, it is definitely possible to run agents in the map reduction algorithm on many machines, but nothing is built into F #, which does it automatically.

You will need to implement a map reduction algorithm, have agents running in the cluster, probably like Windows services, and then exchange information between the source and agents, probably through WCF.

+1
source

All Articles