|
|
|
|
|
by klabb3
644 days ago
|
|
> If you know you will absolutely need multiple app nodes on day 1 or day 10 Yes, but there are a few options even then. First, you can of course tune http caching etc, find traditional bottlenecks. Second, you can also break the business logic into a separate API endpoint that runs only SQLite + business logic + API responses. Then you can add more frontend nodes in case rendering and other things are most expensive. The main downside is all logic practically has to be written in the same language as a monolith. |
|