Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While running through a piece of code for performance tuning, i noticed that the pooled database connection is not used immediately, it follows some pre-processing before the connection used to delegate a SQL update call.

I fixed the codes by delaying the retrieval of the pooled database connection until before the codes is ready to call on the insert method.

As i am trying to update the documentation that this optimization is done, how should i work it in a sentence or title?

Old Codes:

... 

connection = ConnectionFactory.getPooledConnection(); // get pooled connection

String message = StringUtils.replace(log, "a", "b");

// many other processing

connection.update(message);

connection.release();
...

New Codes:

... 


String message = StringUtils.replace(log, "a", "b");

// many other processing

connection = ConnectionFactory.getPooledConnection(); // get pooled connection

connection.update(message);

connection.release();
...
share|improve this question

1 Answer

up vote 2 down vote accepted

Not sure this case actually warrants it - because you've made the code behave more like it "should". But generally, such deferral of work until the moment it is needed is referred to as "lazy initialization".

share|improve this answer
thanks for the heads up – Chin Boon Jul 18 '11 at 8:14

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.