Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a App that uses geolocation via google maps api ( Distance Matrix and Maps API ) to calculate the distance and show pins on the map. I'm having performance issues with my logic ( I have 100 addresses at my database, I grab them all, I run all into the distance matrix and get the distance for my location) I'm doing this every single time the user clicks on the update location button. But there's a catch with that method, I'm making 100 requests every time the refresh button is clicked and it is just for 1 user. Obviously sometimes the API richs the limit of requests per day. My question is: How can I get better performance and improve my logic for this App to run faster and doesn't reach the daily request limit? I have about 1000 people using this app.

Here is my code:

<?php
header('Content-Type: application/json');

// Open the connection with the database
$conn = mysql_connect('localhost', 'gennovacap', 'coupons');
mysql_select_db('coupons', $conn);

$id_voucher = $_POST['id_voucher'];
$uuid = $_POST['uuid'];
// $uuid = "1343C38F-C0F3-4D86-B763-C14CFBF1DAC3";
// $id_voucher = 8;


$q = mysql_query("SELECT * FROM vouchers WHERE id_voucher = ".$id_voucher);
$voucher = mysql_fetch_assoc($q);

if(preg_match('/[\+]{2}+/', $voucher['address'])) {
    $i = 0;
    foreach(explode('++', $voucher['address']) as $address){

        $address = preg_replace('/\s/m', '+', $address);
        $request = "http://maps.googleapis.com/maps/api/geocode/xml?address=".$address."&sensor=true";
        $result = simplexml_load_file($request);

        $latitude = $result->result->geometry->location[0]->lat;
        $longitude = $result->result->geometry->location[0]->lng;

        $json['markers'][$i]['latitude'] = $latitude;
        $json['markers'][$i]['longitude'] = $longitude;
        $json['markers'][$i]['titlev'] = $voucher['name'];

        $i++;
    }

} else {
    
    $address = preg_replace('/\s/m', '+', $voucher['address']);
    $request = "http://maps.googleapis.com/maps/api/geocode/xml?address=".$address."&sensor=true";
    $result = simplexml_load_file($request);

    $latitude = $result->result->geometry->location[0]->lat;
    $longitude = $result->result->geometry->location[0]->lng;

    $json['markers'][0]['latitude'] = $latitude[0];
    $json['markers'][0]['longitude'] = $longitude[0];
    $json['markers'][0]['titlev'] = $voucher['name'];

}

// See if the user redeemed this coupon
$redemption = mysql_query("SELECT * FROM redemptions WHERE uuid = '".$uuid."' AND id_voucher = '".$id_voucher."'");
$count = mysql_num_rows($redemption);
if($count > 0) {
    $created_at = mysql_fetch_row($redemption);
    $json['titlev'] = $voucher['name'];
    $json['deal'] = $voucher['deal'];
    $json['redemptions'] = false;
    $json['redemptions_text'] = $created_at[3];
} else {
    $json['titlev'] = $voucher['name'];
    $json['deal'] = $voucher['deal'];
    $json['redemptions'] = true;
    $json['redemptions_text'] = "Redeem This Coupon";
}

print json_encode($json);
share|improve this question

2 Answers

Could you use caching to reduce the number of requests?

Also something I've done in the past is that when I hit the limit on google API requests and fallback to another service like Yahoo or something.

I'm not sure if Yahoo has the same functionality but it might be worth looking into

share|improve this answer

This is very similar to Rafael Fragoso's question here and my answer there applies here. As Andrew said, you can cache it temporarily (so an address geocoded by one user can be stored temporarily -- that's important for conforming to TOS) for other users needing that address in the next hour or several minutes or whatever.

A much better, more robust solution, however, is to find an API that lifts the query limits and is more perpetual. See my linked answer for a suggestion to get you started.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.