Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some methods which allow me to lookup some identifiers, so essentially the run an SQL query and pass back a value.

Currently they are not static. Would it make sense to make them static, from a performance point of view i.e. have less in memory and save the time that is required to instantiate the object? Or are these considerations not really important.

share|improve this question
5  
Looking a way to optimize that SQL would be a much better spent time here, in my opinion. – Goran Jovic Dec 25 '10 at 13:32
Perhaps you are looking for a way to cache the results so that you don't constantly hit the database? If so, look in to a singleton pattern or use a caching framework. – Jonathan B Dec 25 '10 at 15:15

2 Answers

up vote 3 down vote accepted

A reason to use a static method is if you believe it improves clarity.

Being pedantic, using static could gain 8 bytes of memory (one reference) The value of this memory is about 10,000 th of one cent. Using a static call saves as much as 1 ns, an SQL query might take 10 ms, so the difference is 10,000,000 times or more.

In 99% of cases, using static will save you less than the cost over having to type the word (i.e. the value of your time to type the word is much greater than the memory/processing you will save) Use static if you believe it makes the program clearer. e.g. for writing utility methods.

share|improve this answer
1  
Thanks, that's a very convincing answer. – Ankur Dec 29 '10 at 14:49
1  
Or you could use an editor that types the word for you, and never have to waste time typing it again. =) – Bruce Connor Aug 7 '12 at 1:15

There's no significant difference in practice, one way or another. It's especially true in your case, since SQL queries will take much more time than java method call.

As for memory usage, by making method static you're gonna gain 0 bytes of memory, that's absolutely certain.

share|improve this answer
1  
+1 - Indeed, the SQL queries themselves are probably taking 10,000 times or more longer than the method calls you are thinking about "optimizing". – Stephen C Dec 25 '10 at 13:44
For a static method call, the VM does not have to store this on the stack, so you may save some memory that way but the JIT compiler is probably perfectly capable of optimizing this out for any methods that don't use this. – Mike Samuel Dec 25 '10 at 14:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.