ஒரு API gateway என்பது backend services-ல் முன்னால் அமர்ந்திருக்கும் ஒரு ஒক்க entry point ஆகும் — routing, authentication, rate limiting மற்றும் மற்றவற்றை போன்ற cross-cutting concerns-ஐ கையாள்கிறது. இது microservices architectures-ல் பொதுவான செயல்பாட்டை நிலைநிறுத்த குறிப்பாக பயனுள்ளதாக உள்ளது.
API gateway என்ன செய்கிறது
The API GATEWAY is a single entry point in front of backend services:
Client → API GATEWAY → ┬→ Service A
├→ Service B
└→ Service C
→ handles cross-cutting concerns in ONE place (so services don't each implement them)
→ routes requests to the right service; abstracts the backend from clients
