WP_Query sızıntı saçma bellek miktarları


10

Aşağıdaki işlevde WP_Query () öğesini her aradığımda, Wordpress 8 megabayt bellek sızdırıyor. Ve ben bu işlevi çok çağırdığından, işler oldukça hızlı bir şekilde tüylü olsun ... :( Ortaya çıkan $ queryObject unsetting yanı sıra periyodik olarak wp_cache_flush () çağıran denedim, ama hiçbir etkisi var gibi görünüyor.

function get_post_ids_in_taxonomies($taxonomies, &$terms=array()) {
    $post_ids = array();

    $query = gen_query_get_posts_in_taxonomies($taxonomies, $terms);
    // var_dump($query);

    //Perform the query
    $queryObject = new WP_Query($query); //*****THE 8 MEGABYTES IS LEAKED HERE*****

    //For all posts found...
    if($queryObject->have_posts()) {
        while($queryObject->have_posts()) {
            $queryObject->the_post();

            //Get the $post_id by capturing the output of the_ID()
            ob_start();
            the_ID();
            $post_id = (int) ob_get_contents();
            ob_end_clean();

            // echo $post_id."\n";
            $post_ids[] = $post_id;
        }
    }

    unset($queryObject);

    return $post_ids;
}

gen_query_get_posts_in_taxonomies () şudur:

function gen_query_get_posts_in_taxonomies($taxonomies, &$terms=array()) {
    //General query params
    $query = array(
        'posts_per_page'    => -1,  //Get all posts (no paging)
        'tax_query'             => array('relation' => 'OR'),
    );

    //Add the specific taxonomies and terms onto $query['tax_query']
    foreach($taxonomies as $tax) {
        //Get terms in the taxonomies if we haven't yet
        if(!array_key_exists($tax, $terms)) {
            $terms[$tax] = array();

            $terms_tmp = get_terms($tax);
            foreach($terms_tmp as $tt)
                $terms[$tax][] = $tt->term_taxonomy_id;
        }

        $query['tax_query'][] = array(
            'taxonomy' => $tax,
            'terms' => $terms[$tax],
            'field' => 'term_taxonomy_id',
        );
    }

    return $query;
}

1
DEBUG BAR eklentisini denediniz mi?
Kaiser

davanız kaç mesaj tarafından getirilir WP_Query(8mb sızdırıldığında)?
Eugene Manuilov

Yanıtlar:


14

WP Hacker'lara mükemmel yanıtlar: http://lists.automattic.com/pipermail/wp-hackers/2012-Haziran/043213.html

Bu sorgu ile yaptığınız şey, tüm yayın içeriği de dahil olmak üzere HER eşleşen yazıyı belleğe yüklemek. Tahmin edebileceğiniz gibi, bu muhtemelen oldukça fazla öğe.

Bunun yerine, eşleşen post_idlerin listesini döndürmek için WP_Query'ye 'fields' => 'id'leri iletebilirsiniz; bu, belleği (ve işlem süresini) önemli ölçüde azaltmalıdır:

http://codex.wordpress.org/Class_Reference/WP_Query#Post_Field_Parameters


3

Burada ortaya çıkan hafıza sorununu araştırırken tökezledi.

Bu durumda, kimliği yakalamak için arabelleğe alma kullanmak yerine get_the_id kullanabilirsiniz ve sorgulanan alanları yalnızca kimlikleri içerecek şekilde daraltabilirsiniz.


Yanıtınız için teşekkürler Thomas! Hatırladığım kadarıyla, bazı ham SQL yazdım. Ancak, bu muhtemelen de işe yarardı. Çok teşekkürler! :)
rinogo
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.