TritonDataCenter / minecrab

Minecraft on Joyent's Cloud & Manta on Demand
Other
27 stars 12 forks source link

Map render result uploading should be done in a single process #64

Closed nfitch closed 9 years ago

nfitch commented 9 years ago

Currently it is done like this:

xargs -n 1 -I {} mput -q /nfprod/public/minecrab/servers/test-eee/map/view/{} -f {}

Which is expensive forking a node process for each tile. We should probably use something like msync which runs all in one process.