Hello,
I was comparing ABP Core template with Asp.net core in terms of throughput and efficiency. I need to make a highly efficient web service which would be inserting like 1 million blog posts in 1 second.
Would having ABP stack be a overhead or it is negligible? Is there any load test and stress test data available for ABP core?
Regards, Gunpal Jain
2 Answer(s)
-
0
Hi,
We don't have such a stress test. But ABP infrastructure should not effect much. It's much more less than inserting a single database entry in our experiments.
If you will insert 1 million entity in a single web service call, you have bigger problems :) I suggest you to use some kind of batch insert, otherwise SQL Server can not insert 1,000 rows in a second even you directly use ADO.NET. But these are out of scope of ABP and AspNet Zero.
-
0
Hello,
Thank you for your reply. I have worked out the solution for this problem. I will not use database for actual blog posts. I would use flat files to save posts.
Regards, Gunpal Jain