Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

By default Spork on Windows creates 2 processes. How do I configure it so that it spawns more processes?

share|improve this question

1 Answer

up vote 5 down vote accepted

I finally buckled and forked the spork project. The line to change to spawn more than 2 slave processes in Spork is simple:

In lib/spork/run_strategy/magazine.rb, change

Slave_Id_Range = 1..2

to

Slave_Id_Range = 1..10

or whatever number you feel is appropriate.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.