|
<< Click to Display Table of Contents >> Navigation: Telegram > 2024 > 08 > 16 > Telegram_2024-08-16T16 |
2024-08-16T16:05:08
Hello everyone, I would like to know the opinion of experienced colleagues, I recently joined the group, I am thinking about developing a web application with intraweb but I am afraid of developing an entire application and running it and it will be slow due to the high user load
I'm thinking about the following architecture
IntraWeb Frontend (Isapi IIS)
Api Horse Backend
PostgreSQL database
application to have an average of 400 users, what do you recommend me?
2024-08-16T16:29:00
Please read this document:
type: link https://www.atozed.com/2024/01/intraweb-versus-aspnet
2024-08-16T16:30:53
First, not sure why you need horse backend.
The application is already a web application. Adding another layer won't bring you any gain here.
I would recommend you to use HTTP.SYS instead of ISAPI/IIS because it is simpler and performs slightly better, sharing the same robust Windows HTTP(S) infrastructure
2024-08-16T16:32:01
But the short answer to your question is: You won't have any issues with IW to support 400 users. The bottleneck is always the DB access layer.
2024-08-16T16:35:14
And what causes problems with the DB access layer in general is poor design and/or code
2024-08-16T16:55:17
Thank you, I think about using good programming practices, oobj, interfaces, solid, clean code.
So the data part can be directly connected, and the reporting part in the api layer