Hacker News new | ask | show | jobs
by Softcadbury 1610 days ago
Can you say more about that ? I'm a DotNet developer and I don't see how this could be possible without having several applications
2 comments

If a monolith has routes /a and /b, you can deploy the whole service to 2 servers with a proxy where all of the requests for /a goes to server 1 and all the requests for /b go to server 2. Server 1 has all the code to respond to /b but will never see that request.
Feature flagging comes to mind, just don't expose the pieces that don't work or are in-progress? or .exclude or something.