Tag

map optimization

1 views collected around this technical thread.

HelloTech
HelloTech
Jan 6, 2022 · Mobile Development

Optimizing Real-Time Vehicle Positioning in Ride-Hailing Apps

The article proposes a comprehensive method to eliminate driver‑location flicker and angle errors in ride‑hailing apps by calculating point‑to‑path distances, mapping and inserting points for smooth motion, handling yaw scenarios, refreshing at 12 Hz, correcting vehicle heading, and optimizing animation versus static map scenes.

Ride-hailingmap optimizationreal-time positioning
0 likes · 10 min read
Optimizing Real-Time Vehicle Positioning in Ride-Hailing Apps
360 Tech Engineering
360 Tech Engineering
Jan 14, 2020 · Backend Development

Go Performance Optimization Techniques: sync.Pool, Map Key Choices, Code Generation, strings.Builder, strconv, and Slice Allocation

This article presents a collection of practical Go performance‑tuning techniques—including reuse of objects with sync.Pool, avoiding pointer‑heavy map keys, generating marshal code to bypass reflection, using strings.Builder for efficient concatenation, preferring strconv over fmt, and pre‑allocating slices—to significantly reduce allocation overhead and garbage‑collection time.

Gomap optimizationperformance
0 likes · 13 min read
Go Performance Optimization Techniques: sync.Pool, Map Key Choices, Code Generation, strings.Builder, strconv, and Slice Allocation