qTranslate qtrans_use recursion optimization

This is another post (first post) about qTranslate performance optimization. This plugin really slows down the blog I’m administrating, so it keeps taunting me to optimize it’s execution. The already optimized (translation of options disabled) plugin adds about 150ms to rendering time. This enhancement saves about 60ms.

Webgrind analysis, before I made the changes, looks like this:
qTranslate + Webgring = before optimization

The changed “function qtrans_use” has some extra code added. The idea is, not to call recursions, when it’s not needed:

function qtrans_use($lang, $text, $show_available=false) {
    $split_regex = "#(|\[:[a-z]{2}\])#ism";
    if (is_string($text)) {
        if (!preg_match($split_regex, $text)) {
            return $text;
        }
    }

    global $q_config;
    // return full string if language is not enabled
    if(!qtrans_isEnabled($lang)) return $text;
    if(is_array($text)) {
        // handle arrays recursively
        foreach($text as $key => $t) {
            $transNeeded = true;
            if (is_string($t)) {
                if (!preg_match($split_regex, $t)) {
                    $transNeeded = false;
                }
            }
            if ($transNeeded) {
                $text[$key] = qtrans_use($lang,$t,$show_available);
            }
        }
        return $text;
    }

    if(is_object($text)||@get_class($text) == '__PHP_Incomplete_Class') {
        foreach(get_object_vars($text) as $key => $t) {
            $transNeeded = true;
            if (is_string($t)) {
                if (!preg_match($split_regex, $t)) {
                    $transNeeded = false;
                }
            }
            if ($transNeeded) {
                $text->$key = qtrans_use($lang,$t,$show_available);
            }
        }
        return $text;
    }
    ...

The Webgrind analysis looks much nicer now:
qTranslate + Webgring = after optimization

  1. Meow • Japan & Urbex

    Did you send this optimization to the author of qTranslate? I think that would be cool because he doesn’t seem to be that reactive 😉

    • I wrote a post on his forum. It would be easier for me too if he patches qTranslate, so I can just update the plugin not needing to tweak it all the time 🙂

  2. Hello,

    Sorry for digging up this old post,
    but the author of qtranslate just sent a request for help via the latest change on his plugin, and you look like having good suggestions for him!

    Perhaps you may send him this suggestion (again), or even work with him if you have some time 🙂
    Also note the “mqtranslate” initiative – they’re forking qtranslate even if they aren’t editing much of the original code yet.

    Thanks!
    Alyaron

  3. I’m not going to use qTranslate anymore. Performance wise, Multisite language switcher is much better.

    • How do you migrate qtranslate to mls? Thanks.

      • I was working on that. But then the new family member came and now the work is postponed.
        I’ll retain the joined comments.
        Then make a copy of the blog (I use 2 languages) using multisite and remove the secondary language in the first blog and first language in the second blog.

Reply to DSmidge ¬
Cancel reply


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>