2025 —
Remote
Solaris Neuro
Founding Engineer
Multi-tenant clinical platform for ABA therapy clinics. Own backend architecture, data layer, and infrastructure.
- Architected PostgreSQL row-level security for shared-schema multi-tenancy, propagating tenant context transactionally through PgBouncer and validating isolation with a concurrent test harness covering 40K+ queries with zero cross-tenant reads.
- Eliminated double-booking across therapists, rooms, and patients by replacing application-level retries with PostgreSQL exclusion constraints over tstzrange, reducing booking conflicts from recurring production incidents to zero while cutting p99 write latency from 310ms to 48ms.
- Reduced clinical dashboard p95 latency from 1.8s to 220ms by eliminating N+1 aggregation, introducing partial indexes and LATERAL joins, and moving expensive reporting workloads to incrementally refreshed materialized views.
Show 4 moreShow fewer
- Designed an event-driven processing layer with RabbitMQ, idempotent consumers, dead-letter queues, and bounded retries, processing 100K+ events/day while preventing poison messages from blocking unrelated workloads.
- Built a Go WebSocket gateway for live therapy sessions with bounded write buffers and backpressure-aware connection handling, sustaining 1,000+ concurrent connections on 2 vCPU while using substantially less memory than the previous Node.js implementation.
- Partitioned high-growth clinical and audit tables by month with automated retention and BRIN indexes, keeping time-based queries stable as the primary event table exceeded 50M rows.
- Implemented payment processing with webhook signature verification, idempotency keys, replay protection, and transactional reconciliation, eliminating duplicate-charge incidents caused by provider retries.