Re: ASP.NET: Fundementally Flawed Architecture
Trevor de Koekkoek writes:
Quote
You've got to be kidding. Ease of development? Ease of maintenance?
Memory management? Complexity? You're telling me these are better in a
natively compiled environment. How exactly? Also you don't mention a
platform. Just saying Delphi or C++ doesn't tell me how you're
developing
Quote
your server code? Writing an Http Server from scratch? Using Intraweb?
Writing ISAPI DLLs in C++? Other?
-trevor
Nope, not kidding. I wrote my own webserver back in 1998. Still using
it. Very few lines of code. Very performant. There are plenty of 3rd
party tcp-ip delphi socket servers in the community, so there is no need
for you to roll you own from scratch (although its not hard).
I have NexusDB hooked up as a back-end, so even the DB server is 100%
native Delphi. The unit that integrates a full set of NexusDB services
into my webserver for my Flash WebApp amounts to no more than about 400
lines of code. I could of course use most other DB products as db
back-end with no real impact in the size of complexity of code in the
webserver. But I do love the fact the NexusDB is 100% Delphi.
The servers (both web and db) are fully multi-threaded with a very small
foot-print. Installation is as easy as dropping an exe on a machine or
installing them as a service...
No fuss, no muss, lean, mean and clean...
-d