Microservice Design #52
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
It would be interesting to set up a micro service design, where each service fulfills a very specific role.
For example, one service handles contents of the blog while another is responsible for managing shortened URLs or being a pastebin that I can use in my blog. The frontend could then also be a service, consisting of a high-performance web service that serves the static files.
Idea for services:
This site is a really good resource for learning about microservices.
An idea for simplifying everything is by combining rb-auth & rb-gw, essentially creating an authenticating reverse proxy. This way, all other services could just be private & only respond to authenticated requests from this proxy.