Tagged Questions
2
votes
2answers
253 views
Equivalent java code to measure response time of server
what are the equivalent java api s that I should be using for the following C# code please? What i need is to check the response time.
HttpWebRequest request = ...
2
votes
4answers
3k views
How to measure response-time of network using Java?
We have a client and a server. I want to measure the response-time of the network between them. When I send a request to server it should immediate respond to my request, it should be like a ping ...
1
vote
3answers
390 views
Making a DNS request using Java and timing the response
Could some one show me how I can make a DNS request to a particular DNS server and get the response as well as the response time?
I intend to use this in an signed applet. Is this allowed in an ...
0
votes
0answers
47 views
how to avoid multiple procedure calls from java
I am sure most of us have faced problem where we need to call DB procedure multiple times to save the data.
The simple example is Admin uploading employee details through excel and then this data is ...
0
votes
2answers
139 views
How do you load/stress test a java servlet?
I have a servlet, and I want to do more than a unit test. I need to know performance under load and stress test it.
I need to be able to script a variety of transactions that run over specific time ...
0
votes
5answers
497 views
How do you determine an acceptable response time for App Engine DB requests?
According to this discussion of Google App Engine on Hacker News,
A DB (read) request takes over 100ms on the
datastore. That's insane and unusable
for about 90% of applications.
How do you ...