All for Joomla All for Webmasters
Browsing Tag

threads

Ruby

Threads in Ruby: sending parallel HTTP requests

Most computer programs usually runs in a single thread (sequential execution flow). But the main program can be splited in many threads so they can be concurrently executed, which improves algorithm performance (specially on multi-core CPU’s, where those threads…