Evil_homer Posted May 30, 2003 Posted May 30, 2003 Hi, I developing a new project and need to prove to my manager ASP.Net is faster than PHP, else i'll be forced to use that. Any ideas on what would be a good test to use? The project is a database frontend using MS SQL Server and will be fairly query heavy. Thanks in advance :)
bungpeng Posted May 30, 2003 Posted May 30, 2003 Is it depend on your manager background and interest. For technical people, you can create a screen to insert Ten Thousand records for example, and retrieve Ten Thousand records, to see it's speed. (simple) For business man, maybe you can design a long page, and see how fast for that page to load... something like this
Administrators PlausiblyDamp Posted May 30, 2003 Administrators Posted May 30, 2003 Also some other factors could heavily influence apparent performance under .Net (e.g. use of the Cache object, Page / fragment caching) which may or may not be doable under PHP (never used PHP myself) Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Madz Posted May 30, 2003 Posted May 30, 2003 according to my openion it depends on project scenario and coding. ASP.NET is a robust techonology through which we can use the .NET Framework. well PHP is also a very good techonolgy. both contains the same situation about the coding and methods being called with in applications the remaining thing is Server where it is hosted The one and only Dr. Madz eee-m@il
wyrd Posted May 30, 2003 Posted May 30, 2003 Hi, I developing a new project and need to prove to my manager ASP.Net is faster than PHP, else i'll be forced to use that. Any ideas on what would be a good test to use? The project is a database frontend using MS SQL Server and will be fairly query heavy. Thanks in advance :) If you're using MS SQL then use a language that was built to actually use it, .NET. PHP was built to use MySQL. The only true way to test is to fill a table with 1 million records and do speed tests for retrieving and updating the table with both technologies. If numbers come out similar then ask yourself; which program would be easier to update in the future if built correctly using OOP techniques and save the company time and money? The answer to that is simple, .NET. Gamer extraordinaire. Programmer wannabe.
bungpeng Posted May 31, 2003 Posted May 31, 2003 I just curious why PHP or ASP.NET? why not JSP/Servlet or ASP.NET? since both PHP and JSP/Servlet are free, but from what I understand, Java is better than PHP, right? and Java is OO Language
wyrd Posted May 31, 2003 Posted May 31, 2003 Java has no place in web scripting unless you're doing something that requires dynamics without actually reloading the page. Gamer extraordinaire. Programmer wannabe.
bungpeng Posted May 31, 2003 Posted May 31, 2003 What is that mean? no place in web scripting? your mean the viewstate in ASP.NET? I did some JSP/Servlets and PHPs last time, both of them also quite similar to ASP, but JSP/Servlet will be better compare with PHP
*Gurus* Derek Stone Posted May 31, 2003 *Gurus* Posted May 31, 2003 Wyrd, bungpeng is referring to Java Server Pages (JSP), not Java applets. Huge difference. Posting Guidelines
Evil_homer Posted June 2, 2003 Author Posted June 2, 2003 Thanks for all the replies, I know what you mean wyrd using .net with mssql makes much more sense to me than using php. Just have to try and convince my manger of that now....
Administrators PlausiblyDamp Posted March 29, 2007 Administrators Posted March 29, 2007 Split new posts to a New Thread as this was an old post. Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts