Suryakrishna
Suryakrishna
Backend & FullStack Dev

Projects

DEVLOK Real Estate CRM

Backend API for a real-estate CRM built with Django and MySQL, responsible for property, lead and user management.

Tech stack:
DjangoCeleryMySQLRedis
How it works:

Exposes REST endpoints for CRUD operations, authentication, role-based access and background tasks for email notifications.

Problems & solutions:
  • Background tasks occasionally failed under load
    Switched to resilient Celery retry policies, increased worker concurrency, and monitored task rates to scale workers horizontally using Docker.

Broad Way App

Django-based multi-service application providing on-demand services with a central REST API and MySQL backend.

Tech stack:
PythonDjangoMySQLSocial Auth
How it works:

Central API handles requests from mobile/web clients; background workers process long-running tasks such as invoices and notifications.

Problems & solutions:
  • High latency on list endpoints with large datasets
    Implemented pagination, indexed frequently queried DB fields and added query optimizations; also introduced Redis caching for heavy repeated queries.

Sayas Group Website

Responsive marketing website built with React + Vite to showcase company services and capture leads.

Tech stack:
ReactViteTailwind CSS
How it works:

Static site with client-side interactivity, contact form integration that submits leads to a backend API.

Problems & solutions:
  • SEO and fast load times required
    Optimized images, implemented lazy-loading, and minimized bundle size by splitting routes and removing unused dependencies.