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);