Tagged Questions

1
vote
1answer
25 views

why the jmeter not work ?

I use jmeter to record the requests and then perform a performance test. after i records all the requests with proxy server. and these requests contain post form. after that I run the test cases, but …
0
votes
0answers
14 views

Why does my session expire when using PerformanceTest and not IntegrationTest?

OK, I am writing performance tests and am having trouble getting my session to persist like it does in integration tests. As I understand it, PerformanceTest is a child of IntegrationTest and any …
1
vote
2answers
109 views

Performance Testing Framework in C#?

Currently to performance test code that I write, I have to create some sort of separate throw away executable and set up the timing manually. I really like how the unit testing is built into VS so …
3
votes
3answers
66 views

How to keep track of performance testing

I'm currently doing performance and load testing of a complex many-tier system investigating the effect of different changes, but I'm having problems keeping track of everything: There are many …
1
vote
4answers
131 views

file system performance testing

I am writing a python script that will perform performance test in linux file system. so besides deadlocks, race conditions and time takes to perform an action (delete, read, write and create) what …
0
votes
1answer
65 views

Better way to do simple performance testing

When comparing the performance of operations this is how I would typicaly do the tests: <?php $w = 'world'; $start1 = microtime(true); for($i=0;$i<10000;$i++) echo 'Hello ' . $w . '!'; …
4
votes
6answers
679 views

Performance Tuning PostgreSQL

Keep in mind that I am a rookie in the world of sql/databases. I am inserting/updating thousands of objects every second. Those objects are actively being queried for at multiple second intervals. …
0
votes
2answers
246 views

performance testing tool

Hi All, We are using watir and integrated with VS 2008 using ruby in steel and we have automated our web application and it awsome. Is there way to use the same script to do the performance testing or …
4
votes
10answers
394 views

Java Performance Testing

I want to do some timing tests on a Java application. This is what I am currently doing: long startTime = System.currentTimeMillis(); doSomething(); long finishTime = System.currentTimeMillis(); …
0
votes
3answers
2k views

Using LoadRunner to Test Server Processes

We currently use LoadRunner for performance testing our web apps, but we also have some server side processes we need to test. Background: We call these processes our "engines". One engine receives …
0
votes
1answer
42 views

Best way to test performance of various languages & frameworks

I want to perform some empirical trade-off's to assess the performance of applications written in a number of different languages on a Linux platform. Are there standard algorithms that typically …
5
votes
4answers
128 views

Resistance to performance testing for a big bang rewrite?

Hello, I've been working on a "big bang" rewrite for, literally, over two years. The management has consistently and relentlessly ignored and belittled my calls to allocate time / resources for …