All for Joomla All for Webmasters
Browsing Tag

ruby

Ruby On Rails

Boosting your Rails API Performance Through Caching

In your application development, you can realize that some endpoints in your API will often keep their response unchanged. That unnecessary rework may be a gap in your API performance. For those cases, when your response doesn’t need to…

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…