Changeset [6051ea8cb13df1417c2a16bf180738cd036e2cb8] by Shayan Pooya
May 13th, 2014 @ 07:22 AM
erlang: avoid creating an extra fun when calling spawn_link.
This commit replaces some of spawn_link(Fun) and
spawn_link(Node, Fun) with
spawn_link(Module, Function, Args) and spawn_link(Node, Module,
Function, Args)
respectively. The latter forms are prefered because of their
simplicity.
https://github.com/discoproject/disco/commit/6051ea8cb13df1417c2a16...
Committed by Shayan Pooya
- M master/src/ddfs/ddfs_http.erl
- M master/src/ddfs/ddfs_master.erl
- M master/src/disco_server.erl
- M master/src/disco_worker.erl
- M master/src/hdfs.erl
- M master/src/node_mon.erl
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Disco is an open-source implementation of the Map-Reduce framework for distributed computing. As the original framework, Disco supports parallel computations over large data sets on unreliable cluster of computers.