当数据过多时,Meta查询不返回任何内容

时间:2018-12-20 17:33:52

标签: mysql wordpress meta-query

我正在为一家公司进行“查找经销商”查询,以便用户可以输入邮政编码和半径,并找到该半径内的所有经销商。

在获得数千个邮政编码之前,它似乎还可以正常工作。

我要将邮政编码数组传递到meta_query,并根据我的自定义帖子类型dealer(其keyzip)进行检查,以查找所有$zip_array中包含的邮​​政编码。

  <?php
  // This takes in a zip code and returns all zip codes in a specific radius
  // using the zip code api: https://www.zipcodeapi.com/API#radius
  $api_root   = 'https://www.zipcodeapi.com/rest';
    $api_key    = $ZIP_CODE_API_KEY;
    $zip_radius = isset($_POST['radius']) ? $_POST['radius'] : 25;
    $zip_code   = $_POST['zip'];
    $type       = isset($_POST['type']) ? $_POST['type'] : array('architectural','auto','safety-security');

    $api_url    = $api_root.'/'.$api_key.'/radius.json/'.$zip_code.'/'.$zip_radius.'/miles?minimal';

    $curl = curl_init($api_url);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    $curl_response = curl_exec($curl);
    if ($curl_response === false) {
    $info = curl_getinfo($curl);
    curl_close($curl);
    die('error occured during curl exec. Additional info: ' . var_export($info));
    }

// Because all zip codes come back as strings, we set up an array to push 
// the new zip code integers into
$zip_array = array();

// Decode response for easy looping
$curl_response = json_decode($curl_response);

// var_dump($curl_response);

// Change zip code strings to integers and push into zip_array
foreach ($curl_response as $zipcode) {
    foreach ($zipcode as $the_zip) {
        array_push($zip_array, intval($the_zip));
    }
}

 $meta_query_args = array(
    'post_type'      => 'dealer',
    'posts_per_page' => -1,
    'meta_query'     => array(
        array(
            'key'     => 'zip',
            'value'   => $zip_array,
            'compare' => 'IN',
            'type'    => 'NUMERIC'
        )
    ),
    'tax_query' => array(
        array(
            'taxonomy' => 'types',
            'field'    => 'slug',
            'terms'    => $type
        )
    )
);
$meta_query = new WP_Query( $meta_query_args );

  ?>

此后,我只是执行标准的loopHTML,并回显页面上的所有经销商信息。该API将按原样返回所有邮政编码,并且所有内容均应按其显示并快速显示,但是我注意到,当我将半径设置为100 miles时,对于美国东北部的一些邮政编码,它会最多返回2500个邮政编码。

例如,在75英里处的19804返回大约1200个邮政编码,并正确显示9个经销商。在100英里处的19804返回大约2200邮政编码,并且显示循环触及else并说没有经销商匹配该数据。

其他邮政编码处的100英里(仅返回1000左右)将返回数据并正确显示。

这是否只是需要检查太多邮政编码的情况?还是我离开了,这完全不同了?

1 个答案:

答案 0 :(得分:0)

发现了问题。我检查了WordPress debug.log,看到了Query Killed。 Google搜索了该问题,发现在WP Engine托管中,它们限制了一定大小的查询。

因此,在wp-config中,我添加了define( 'WPE_GOVERNOR', false );行,这取消了WP Engine的查询限制。