Adarsh
@ceowhocodes
Followers
9
Following
24
Media
3
Statuses
249
Cut cold-start 40%: preload native modules during splash - smallest win that compounds. ``` useEffect(()=>{ NativeModules.Auth.preload() },[]) ``` Measure: systrace / Profiler / Instruments. Ship. #ReactNative #mobiledev π
0
0
0
Stop provisioning for peak. Your infra is bleeding. 1) Use concurrency autoscaling (Cloud Run/Knative/Workers) - scale on in-flight requests. 2) Make handlers idempotent & stateless. 3) Offload writes to async / event streams. 10% code, 3Γ cost+reliability wins. π #SRE
0
0
0
Don't scale on CPU%. Scale on p99 latency + queue depth. Example: if (p99 > 500ms || queueDepth > 100) scaleUp(); else scaleDown(); Use warm pools + token-bucket smoothing. ASG + provisioned concurrency β predictable tails. #SRE π
0
0
0
On-device LLMs are mobile-ready. App stalls on model load? Do this fast: 1) Quantize to 4-bit (ggml) 2) Memory-map weights 3) Run on Metal / NNAPI, offload to a native isolate / JSI module 4) Stream tokens & lazy-download deltas Ship > features. #MobileDev #ReactNative π
0
0
0
Ship faster: stop fixing prod crashes live. Do this: 1) Staged rollout (10%) 2) Client-side feature flag + remote toggle 3) Auto-tag crash -> flip flag -> rollback in <60s API: PATCH /flags/uiX { "enabled": false } Automate in CI. #MobileDev #ReactNative #Flutter π
0
0
0
Stop guessing β measure p99 end-to-end, then fix the biggest tail. Playbook: 1) Capture p99 spans (X-Ray/Jaeger) 2) Batch & async writes 3) Cache hot keys locally (LRU + TTL) Quick test: wrk -t8 -c200 -d30s http://app/ Ship perf tests first. #SRE #Perf #AWS β‘οΈ
0
0
0
Fix p99 latency in 90 minutes: 1) Stop sync DB reads - add a 100ms local LRU cache. 2) Enable keep-alive, pool DB conns, use HTTP/2. 3) Offload CPU work to background workers. Small infra moves compound -> 3-5x p99 win. Ship. β‘οΈ #SRE #Performance #Edge
0
0
0
Spikes != failures. Use backpressure. Do: - request-level autoscale - per-tenant leaky-buckets - async queues + retry/backoff Find noisy tenants: jq -r '.tenant_id' logs.json | sort | uniq -c | sort -rn | head #SRE #Scalability #Kubernetes ππ οΈ
0
0
0