Skip to content

Instantly share code, notes, and snippets.

View EktwrW's full-sized avatar
💭
I may be slow to respond.

Hector Waldmann EktwrW

💭
I may be slow to respond.
View GitHub Profile
@EktwrW
EktwrW / NearbyBusinessSearch.php
Created July 23, 2026 07:39
Geospatial nearby-search service (Foodly) — indexed bounding-box pre-filter + Haversine + short-TTL cache, cutting Google Places/Geocoding API calls 60-80% without sacrificing search latency.
<?php
namespace App\Services;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\DB;
/**
* Finds businesses near a given point, efficiently, at scale.
*