Skip to content

Application Bus

Victor Dudochkin edited this page Jun 8, 2018 · 1 revision

Application bus

I dont think the usage of HTTP protocol between frontend server and application logic is productive. There exists double work to parse HTTP - one time on the frontend server, other time on the applicaation logic side. So we need more productive way. Also we need to be scalable, coz we can divide the powerload between nodes. What i mean in term "powerload". Powerload is not only application logic requests but the data requests. So the application bus it is a trasport for application reqests and data requests. There no need to use database drivers on application logic side, coz we can use the same transport for data. As i said "less code is more productive and stable".

Clone this wiki locally