search for: 1000threads

Displaying 1 result from an estimated 1 matches for "1000threads".

2006 Nov 13
2
Rails Camp Scaling Session notes
...have to wait for things to do stuff – backgrounddrb is used. This releases the lock on the worker. Also look at ‘merb’ – mongrel plus erb. First use for this is image upload. * In a typical rails environment image upload locks process. * Worst case – 100Meg mongrel processes, 1000threads simultaneously. That’s 100Gig, @ 16Gig per machine makes for 8 machines.. Not a big deal. Array implementation and rails calls * Supposedly each rails call creates 60000(!) arrays. * There is a patch to make Array implementation quicker – but it is not accepted yet. Problem with Ruby is...