For questions pertaining to the measurement or improvement of code efficiency.

learn more… | top users | synonyms (18)

3
votes
0answers
208 views
+50

What index would speed up my XQuery in X-Hive / Documentum xDB?

I have approx 2500 documents in my test database and searching the xpath /path/to/@attribute takes approximately 2.4 seconds. Doing distinct-values(/path/to/@attribute) takes 3.0 seconds. I've been ...
0
votes
0answers
54 views
+50

jQuery Mobile iScrollView error

I am using jQuery Mobile and iScrollview together, I used iscrollView The scrolling work fine. Problem 1: when I click on a input text/password field, I get an extra box overlapping the whole ...
16
votes
2answers
317 views
+50

Run executable from php without spawning a shell

I need to call an executable from an imposed context of a PHP script. Both performance and security wise it's better not to call a shell at all between web server process and executable. Of course I ...
5
votes
1answer
55 views
+100

How is jProfiler handling JIT?

I use jProfiler extensively and it is a great tool but I am wondering how is jProfiler handling the effects of the JIT compilation. Am I able to observe for example method inlining? If a method is ...