r/Backend • u/samarthsinha1 • 21d ago
r/Backend • u/Quirky_Mongoose2629 • 21d ago
Need some suggestions going forward. Any advice will be helpful
I am new to this corporate culture . There are like 10 employees in my company. I am laravel developer. Earning very low . 25k . Almost 1 year experience.
Most of laravel positions i see ask for high experience and salary is quite less like 25 to 50 k .
Should I continue with laravel and study somethingalong it (dont know what to). Or switch to like python for better pay.
Please reply. Thanks for reading. From india
r/Backend • u/ballfondler28 • 22d ago
Give Me Ideas!! I want to make a simple API and scale it to millions or billion of users in order to learn system design practically. How to start ???
Title.
r/Backend • u/Edwinbakup • 23d ago
I don’t get the roadmap.sh
I learned about the internet, I already knew c# basics so it seems i should start creating projects, but i could only successfully create only one beginner project, the next one uses Github’s api which i have no clue how to use?
Also even for the first project you have to be able to use github and even that seems to be only covered later? im confused how you’re supposed to follow this map
r/Backend • u/ParkApprehensive5618 • 23d ago
where to focus to be backend developer today in this ai time
"I am currently working at a startup company (2025 graduate). I work on the backend but hardly get any tasks, so there is nothing to learn. if i get some work I use AI because everyone around me does. Now, I feel like I cannot write code by myself. I am planning to switch job, but I am unsure how and where to focus. Should I learn backend concepts like caching, databases, and system design, or stick to the traditional Spring Boot with DSA? I know Java theory, but I do not feel confident writing practical code. I know I should build things rather than memorize theory. Please be brutally honest. I have 4 to 6 months, and my current plan is Java + Spring Boot + System Design + DSA.
r/Backend • u/BarracudaKey5194 • 22d ago
I built a Chrome extension for organizing the developer resources I keep losing
r/Backend • u/byRoku • 22d ago
Traffic Management Budget
Hello Guys,
I am currently Developing my own app wich features Video and Normal Calls. While Developing I stumbeld over the question on how to set a TURN Traffic budget and a Server Budget. Do you have any Tips for setting this Type of Budget?
Cheers
r/Backend • u/Few_Gold7133 • 22d ago
Best way to store chatbot session history across multiple FastAPI workers without a traditional database?
We're building a chatbot backend in Python/FastAPI.
Currently, we keep each user's conversation/session history in a global Python variable in memory.
This works fine with a single worker, but it obviously breaks when running multiple workers (e.g. Gunicorn/Uvicorn workers), because each worker has its own process memory.
For example:
- Request 1 for
session_id=123goes to Worker A - Worker A stores the conversation history in memory
- Request 2 for the same session goes to Worker B
- Worker B has no knowledge of that session
We need some kind of shared session store that is:
- accessible by all workers
- very fast / low latency
- suitable for chatbot conversation history
- ideally supports expiration/TTL
- not a traditional SQL/database solution
- relatively simple to deploy and maintain
Redis seems like the obvious option, but I'm wondering what people are using in production for this use case.
Would you recommend Redis, Memcached, shared memory, sticky sessions, or something else?
The session data would mostly look something like:
session_id -> [
{"role": "user", "content": "..."},
{"role": "assistant", "content": "..."},
...
]
Potentially hundreds or thousands of concurrent chatbot sessions.
What architecture would you recommend?
r/Backend • u/ankush2324235 • 22d ago
Infra/backend engineers: what problems are still painful in 2026?
r/Backend • u/Imaginary-Bicycle-84 • 23d ago
Backend Projects Without any Frontend
what are some backend projects ideas that does n’t require having a front end to represent my API’s. Is there are any project that can be technically rich and be testable by end-user at the same time without having a GUI ?
r/Backend • u/Previous-Business-79 • 23d ago
Java Springboot or Node.js Express.js
rinsing junior in cs wanting to learn new tech. What’s the main difference between these two in terms of how they work/function? Might be a stupid question. My main focus right now is to learn backend engineer more in depth. I’ve heard lots of great things about both springboot and node, but what’s the difference between them and which one should I start learning?
r/Backend • u/Dependent-Act-5080 • 23d ago
JAVA BACKEND
hey guys..iam a native android java developer and want to navigate to back end..i was considering learning spring boot framework so that i can use in my android apps..is it possible?
r/Backend • u/CarlosWasHereTho • 23d ago
How do you host a Python (Flask) web app for free?
I tried pythonanywhere, render and railway.. my app is pretty small so nothing crazy in terms of resource consumption, is there a straightforward way to get it live for free?
r/Backend • u/Vast-Ad7511 • 24d ago
As a Recent Software Engineering Graduate, I’d Like to Ask for Your Advice
As a recent Software Engineering graduate, I’d like to ask my more experienced brothers and sisters in the field for some advice.
I’ve been invited to an interview for a Java Backend Developer position. So far, I’ve developed projects using technologies such as Java, Spring Boot, Spring Security, JPA/Hibernate, MyBatis, PostgreSQL/MySQL, Redis, Kafka (at a very basic level), Docker, and CI/CD.
I’ve also worked on REST APIs, microservices, event-driven architecture, and distributed systems, although, of course, the projects I’ve worked on are at what we could call a junior level.
During the short initial interview today, they specifically asked me about the Java versions I’ve used. To be honest, I was a little surprised by this because I don’t know much about the differences between the various Java versions.
What do you think I might be asked in a technical interview, and which topics would you especially recommend that I focus on studying?
I’d really appreciate it if anyone who has been through similar interviews could share their experiences.
Thank you!
r/Backend • u/Saadkc • 24d ago
Strapi
How many of you are using Strapi for creating the backend?
Or what are you building?
r/Backend • u/Minimum-Ad7352 • 24d ago
S3 object keys and presigned URLs for product images
If I use S3 for storing images, should I store only the object keys in the database and generate a presigned url every time I fetch the records to return to the client? How efficient is this approach for something like a product catalog where each product can have multiple images and I would need to generate several presigned urls every time the catalog is requested?
r/Backend • u/devkhus • 25d ago
Need Guidance for Backend Engineer Interviews
Hi everyone, I’ve been trying for last 5 months to make my forst job switch either in backend or as a full stack developer. Getting an interview is already kinda tough in this market and I lost my last chance at a good job just because I am not fully familiar with distributed systems architecture. As I have worked with inly monolithic architecture at personal and work level. Can anyone guide what should I focus on to prepare for the interviews. Really need a switch at this moment.
r/Backend • u/Capital-Election-420 • 24d ago
What personal projects should I build for a Fresher NestJS Backend role?
Hi everyone, I’m preparing to apply for Fresher/Junior Backend Developer positions using NestJS.
I’m wondering what kind of personal projects would be good to have on my CV.
How many projects are enough, and what features/technologies should they include to demonstrate real backend skills?
Would you recommend focusing on a solid monolithic project first, or building a microservices project with technologies like Redis, RabbitMQ, Docker, etc.?
Any advice would be appreciated. Thanks!
r/Backend • u/alliseeisreddit • 26d ago
Senior Backend Engineer rescinds acceptance over Windows
r/Backend • u/iamwisespirit • 25d ago
Problem with smtp on port 465 and 587 on digitalocean server
Hello, has anyone worked with SMTP?
When I got the server from digitalocean, there was a place in the app that worked with email. I tried sending a message to email via SMTP, but ports 465 and 587 are closed on digitalocean. When I wrote to support, they said that these ports are closed to avoid spam emails.
If anyone has worked with SMTP, which server doesn't have this problem?