article,regarding,Loops,Locks,performance,cod
Quick Search for:  in language:    
article,regarding,Loops,Locks,performance,cod
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
Java/ Javascript Stats

 Code: 156,060 lines
 Jobs: 365 postings

 
Sponsored by:

 

You are in:

 
Login



Latest Code Ticker for Java/ Javascript.
Click here to see a screenshot of this code!Kohonen
By Marcelo Ivan Martin on 10/24

(Screen Shot)

Click here to see a screenshot of this code!New Ticker
By Aidan Dunbar on 10/24

(Screen Shot)

Click here to see a screenshot of this code!Click The ball game
By Sugi on 10/23

(Screen Shot)

Click here to see a screenshot of this code!Modified Horizontal Marqueue
By Sugi on 10/23

(Screen Shot)

Palindrome using linked stack and linked queue
By lostcauz on 10/23


Click here to see a screenshot of this code!A ( part2 ) Powerful Java Servlet & JDBC Code for Web Development
By James Smith Kelleher on 10/21

(Screen Shot)

Crack Javascript Source-Protecti on
By cool4best on 10/19


format date
By Sam Collett on 10/18


Click here to see a screenshot of this code!Applicant assessment
By SP Tang on 10/18

(Screen Shot)

Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!





Affiliate Sites



 
 
   

Loops and Locks

Print
Email
 

Submitted on: 5/29/2002 2:42:20 AM
By: Sachin Mehra (Delhi, India) 
Level: Advanced
User Rating: By 4 Users
Compatibility:Java (JDK 1.1), Java (JDK 1.2)

Users have accessed this article 1497 times.
 
(About the author)
 
     This article is regarding Loops and Locks. And about the performance of our code. There is no ‘silver bullet’ to making fast and efficient code...let's do it ourself.

 
 
Terms of Agreement:   
By using this article, you agree to the following terms...   
1) You may use this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this article from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.
Programming Efficient Code <--[if gte mso 9]> default default 1 2 2002-05-29T06:35:00Z 2002-05-29T06:37:00Z 1 1110 6331 52 14 7427 10.2625 <--[if gte mso 9]> MicrosoftInternetExplorer4 <--[if !mso]> <--[if gte mso 10]>

Programming Efficient Code

Loops and Locks

Article by Sachin Mehra (sachinweb@hotmail.com)

 

One of the worst things that a programmer can assume is that the compiler and middleware will do the optimizations for you!  Most applications are being targeted for 50-200 concurrent users, which is why we need to constantly be worrying about the performance of our code.

 

Say you have a search component (which will be on everybody’s desktop) which takes 3-5 seconds to load; and consequently ties down the database.  Imagine what will happen when 200 people try to load this at the same time.  Simple math would suggest (say using an average of 4 seconds): (4 x 200) / 60 = 13 – THAT’S 13 MINUTES!  And actually, when dealing with situations of high contention, you cannot assume 100% efficiency and could be realistically dealing with something in the range of 20-25 minutes of processing time required. 

 

There is no ‘silver bullet’ to making fast and efficient code.  Middleware will not solve the problem for you, databases will not solve the problem for you, it is up to you as a computational process engineer (how’s that for a title?) to understand and deal with the underlying inefficiencies in the software you design.  There are many things which you need to consider, and you need to think your logic out carefully.  One thing you should always be asking yourself is “could this be done better?”.

 

 

In programming, we find ourselves in loops a lot.  In Java, we especially find ourselves looping through Collection objects an awful lot.  This is one of the particular areas where many of us need some improvement.  When you use a Collection object, how do you decide what type of Collection to use, and how to apply it?  It seems to me that most Java Programmers are just using “whatever works”, and they use the one which they “believe” to be the fastest.  The fact of the matter is, different types of collections are for different kinds of applications.  Do you truly know the differences between Vector and ArrayList.  The most common misconception I have heard is that a Vector will automatically grow in size, and an ArrayList will not, this is simply not true.  The only real difference is that Vector is thread-safe and ArrayList is not.  And what does this mean?

 

Being thread-safe is not always a good thing.  When something is thread safe, it means that the runtime must maintain locks on certain objects, when they are being accessed to prevent concurrent modification.  In many cases, this additional check is unnecessary and very costly to performance.  On the other hand there are situations where it is very necessary to do thread-safe operations.  Many people understand the jist of synchronization, but don’t truly understand how to take advantage of it properly.   One thing I have see people doing a lot is applying synchronized in places where they should not. Consider the following:

 

Example 1A:

 

synchronized void addUser(User user) {
            this.list.add(user);

}

 

 

Another common misconception is that the synchronized keyword will only protect that particular method.  If you think this, you should read on.  This will however, effectively only allow the instance of list to be accessed by only one Thread at a time. But by doing this, you force the runtime to place a lock on the entire object pool of the class instance, which essentially means, any instance methods cannot be executed during the execution of addUser().  In most cases, this is inefficient.  Other threads may need access to other non-effected items. 

 

The following example addresses this problem.

 

Example 2A:

 

void adduUser(User user) {

            synchronized (this.list) {

                        this.list.add(user)

            }


}

 

 

In this example, we only lock the instance of list for the duration of the add() execution.  This is much more efficient than Example 1A.

 

Now what does this have to do with picking ArrayList or Vector? Well a lot really.  In instances where we are dealing with temporary sets of data or method-scoped instances, using a Vector is very inefficient.  In situations where there is no chance of their being concurrent access, you should most certainly choose an ArrayList.  For using a Vector would serve absolutely no useful purpose, and would provide unnecessary lock-checking.  We’ll leave hashed-collections for later :).

 

 

Loop Iteration and Tail Recursion

 

As we said earlier, our programs spend a lot of time in loops, and unfortunately loose a lot of their performance in them as well.  I will try to cover a few pointers which may help you in certain situations shave some unnecessary computational cycles off you’re code.

 

People tend to think from beginning to end, and they tend to program in this forward lineage as well.  But this can often be inefficient.  Sometimes the computer can find its way from the end to the beginning much faster. 

Consider the code in Example 1.

 

Example 1B:

 

for (int i = 0; i < arrayList.size(); i++) {

                Object obj = (Object) object.get(i);

                obj.doSomething();

}

 

 

This is a fairly straight-forward for-loop to iterate that iterates through an entire collection to do something.  But consider Example 2:

 

Example 2B:

 

for (int i = arrayList.size(); i != 0; i--) {

            Object obj = (Object) object.get(i);

            Obj.doSomething();

}

 

 

This example is many times more efficient than Example 1.  In example one, we are making a call to arrayList.size() for every iteration through the loop which is unnecessary, and also we are doing a direct XAND comparison to determine if the loop should continue which is also more efficient.  By looping backwards through the ArrayList we manage to increase processing efficiency but 50% or more!  

 

Another magical method to performing ultra-efficient loops has been long-since forgotten.  Yes, I am talking about “tail recursion”.  This is one of the best ways to do mathematical sums on large lists. It also works brilliantly with Java’s Iterator and Enumeration interfaces. Consider the following example:

 

Example 1C:

 

public int getRecordsSum(Iterator iter) {

            return _getRecordsSum(iter, 1);

}

 
public int _getRecordsSum(Iterator iter, int counter) {

            if (iter.hasNext() {

               return _getRecordsSum(iter, counter + ((Integer)i.next()).intValue());

            }


            else {

               return counter;

}

}

 

 

Now for those of you who are keen, you might be thinking StackOverflowException here.  But actually, the compiler will see the optimization opportunity here, just as C and C++ compilers will.  The compiler will pick up on the tail recursion based on the fact that _getRecordsSum() contains no method variables, and is passing references back into itself.  Therefore, this will not cause a run-away stack, but rather a very efficient way of processing numbers. 

 

Final Words

Programming is all about problem solving.  And as with other kinds of problem solving, there are always many different ways to solve the problem.  However, some ways are more certainly better than others.  You should take the time to understand how the underlying components you are using actually work, and why they work they way they do.

 

 

Article By Sachin Mehra (sachinweb@hotmail.com) 

 


Other 1 submission(s) by this author

 

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this article(in the Advanced category)?
(The article with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments

 There are no comments on this submission.
 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this article has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular article, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | Java/ Javascript Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.