server monitoring
Results 1 to 15 of 15

Thread: Can I learn .net using Perl or Java?

Threaded View

  1. #3
    Join Date
    Oct 2010
    Posts
    3
    Trying to find which is the "fastest" can only be done by identical experiments:
    - You write a piece of code in all languages, with the SAME source (input) and objective (output).
    - Make this in a repeat loop (for/next) to multiply the length.
    - Start a timer at the beginning of the program,
    - Stop it when the program has completed its work.
    - Get the total time.
    - Compare performances with the other languages.
    It seems evident to say this, but EACH language has its own fast and slow processes, and finding the "fastest" is really a question of WHAT you are doing!
    You also have to take care of each CALL you make:
    In PhP, two or three similar functions would give you the same answer, but some take longer to execute (sometimes 20 times longer!) By just using a different function, you can make your code much faster!
    .................................................
    Last edited by DougN; 06-09-2015 at 06:12 PM.

Similar Threads

  1. Java tutorial
    By toast in forum Programming
    Replies: 5
    Last Post: 11-28-2018, 01:29 AM
  2. java?
    By duckiesarefun in forum Programming
    Replies: 9
    Last Post: 11-15-2008, 06:36 PM
  3. Very awesome Java
    By toast in forum Programming
    Replies: 27
    Last Post: 10-28-2006, 07:43 PM
  4. java & it's proxy
    By LoOker in forum Proxies and Firewalls
    Replies: 1
    Last Post: 10-10-2003, 06:27 AM
  5. jAVA aNONYMOUS pROXY
    By DATA in forum Proxies and Firewalls
    Replies: 0
    Last Post: 01-16-2003, 07:12 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts