Web based application

What do you like?

  • PHP

    Votes: 2 28.6%
  • Perl

    Votes: 0 0.0%
  • Java (Servlet)

    Votes: 3 42.9%
  • C

    Votes: 0 0.0%
  • ASP

    Votes: 1 14.3%
  • Other (name it on your post)

    Votes: 2 28.6%

  • Total voters
    7
Status
Not open for further replies.

ismu

::phenomenon::.
Registered Senior Member
What language do you prefer to use in programming web based applications?

Any reasons?

Personally I like to use PHP with MySql database. It's quite simple and have enough functions for my purposes. And almost all of paid hosting (and some free hosting) support it. But as script, it not compiled, so I hardly protect my source code (for products for sale).

My other choice is using Java, if i like to protect my source code. Unfortunately I found java can't give desired speed - yet-. And not many web hosting support it.

How about you?
 
I'd suggest <A HREF="http://www.apple.com/webobjects/">WebObjects</A> for anyone doing serious (ie. paid) work. It's Java, and has a large class library (above and beyond the Java class library) and has a built-in Object-Relational mapping system (ie. Java objects are automatically mapped to databases -- no more SQL queries written out by hand).



My other choice is using Java, if i like to protect my source code. Unfortunately I found java can't give desired speed - yet-. And not many web hosting support it.

Have you actually seen (or experienced first-hand) any statistics regarding the speed of Java vs. PHP? Being as PHP is an interpreted language, it should be slower than partially compiled Java.
 
I just love FLASH 5
although it is not suitable for online databases and such, it's a hell of a promotion, show-your-self, WYIIWYG*
software.



*What You Immagine Is What You Get ;):)
 
Last edited:
Originally posted by Porfiry
Have you actually seen (or experienced first-hand) any statistics regarding the speed of Java vs. PHP? Being as PHP is an interpreted language, it should be slower than partially compiled Java.

Yes, I did. But only for few cases. The most significant speed difference i've encounter while generating image on-the-fly directly from vector data stored in database. I'm trying to develop Web GIS (Geograpic Information System) here. I found that PHP_GD much faster than using Java object. I think that because of Java not fully compiled, so it's still run under Java-Runtime.

Last year, I've also face a problem with Java's garbage collection while developing middle-server application for mobile phone billing system (running under Linux), serving application running on IBM AS400. We got to modify Linux Kernel to solve the problem. (Perhaps, it have been fixed now).
 
Status
Not open for further replies.
Back
Top