Distributed Systems active

RateShield — High-Performance Distributed Rate Limiter

An ultra-fast, zero-allocation Go rate limiter achieving sub-40ns execution time using a 64-shard in-memory engine, atomic Redis Lua scripting, and multi-tier failover.

Architecture Highlights:
  • • Sub-40ns execution time (34.84ns Token Bucket)
  • • 0 B/op allocations on hot path
  • • 64-shard FNV-1a mutex engine
  • • Atomic single-RTT Redis Lua scripts
  • • Multi-tier resilient fallback
Quantum Computing completed

Quantum Genetic Algorithm for Knapsack Optimization

Implementation of a Quantum Genetic Algorithm (QGA) combining qubit chromosome representations and quantum rotation gates to solve the NP-hard 0-1 Knapsack problem.

Architecture Highlights:
  • • Linear superposition qubit chromosomes
  • • Quantum rotation gate operator U(Δθ)
  • • Significant population reduction vs classical GA
  • • Higher resistance to local deceptive extrema
Backend & Web Services completed

E-Commerce Web Application for Handicrafts

Backend architecture for an artisan handicrafts marketplace, orchestrating RESTful microservices, authentication, and inventory using Go, Gin, and MongoDB.

Architecture Highlights:
  • • Modular RESTful microservices in Go
  • • High-concurrency Gin HTTP routing
  • • Document schema design in MongoDB
  • • JWT-based role authentication
Backend & Web Services completed

Go Fiber REST API & Database Services

A production-oriented reference implementation of high-throughput RESTful services using Go Fiber and GORM with connection pooling, migrations, and clean repository patterns.

Architecture Highlights:
  • • Fasthttp-powered zero-allocation routing
  • • Tuned database connection pooling (GORM)
  • • Repository pattern for decoupled data access
  • • Automated schema migrations