From: James F. <jam...@ex...> - 2010-08-03 09:54:28
|
after testing locally I have now committed simple optimisation to org.exist.storage.btree.Value all occurrences of the following ----------------------------------------------- if (b1 == b2){ continue; else { ----------------------------------------------- with ----------------------------------------------- if (b1 != b2){ ----------------------------------------------- I would have expected this kind of thing to be optimized by javac but this doesn't seem to be the case. benchmark testing with adhoc queries results in varying % of performance speedup depending upon query I believe there are more optimisation opportunities here but moving slowly and gently. James Fuller |