Tagged Questions

5
votes
3answers
157 views

Best way to convert IEnumerable<char> to string?

Why isn't it possible to use fluent language on string? For example: var x = "asdf1234"; var y = new string(x.TakeWhile(char.IsLetter).ToArray()); Isn't there a better way to convert ...
5
votes
2answers
339 views

How can I evaluate Dart performance?

Google is launching a new language, promising that it has a better performance, but how can I evaluate performance in Dart source code? Let's take as example the "sun flower" drawFrame method: // ...
4
votes
1answer
589 views

Access log replay for load testing? Jmeter Pitfalls and Competitors

Context We wish to use "replay" web server access logs to generate load tests. JMeter had come to mind as I'd recently read blog posts about using jmeter in the cloud (e.g. firing up a number of ...
4
votes
9answers
2k 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(); ...
3
votes
4answers
58 views

high cpu in work process

I am currently running performance tests on a .net web application written in c#. I have test tool that simulates a load of 200 users on a windows server 2008. This is resulting in very hign cpu ...
3
votes
1answer
214 views

Automatic performance testing of Scala libraries

Do any Scala testing libraries help with performance tests? Can't find anything relevant in ScalaTest or specs.
2
votes
1answer
108 views

How to performance test a rails app as part of the continuous integration build cycle?

We currently use CruiseControl (ruby version) for CI, and it runs our unit and integration tests (primarily rspec). That's great: it gives us instant feedback on any functional issues or regressions ...
1
vote
4answers
57 views

Is it faster to retrieve a row in MySQL if the primary key is a string (varchar) or an integer?

I'm creating a database for a dictionary. Consider the table WORD. My current plan is to make its primary key word_id which will be an integer, then give it another attribute text which is the textual ...
1
vote
1answer
45 views

Ruby and Timeout.timeout performance issue

I'm not sure how to solve this big performance issue of my application. I'm using open-uri to request the most popular videos from youtube and when I ran perftools https://github.com/tmm1/perftools.rb ...
1
vote
1answer
31 views

Performance Testing Secured Web Site

How is the community handling performance testing of their secured web areas? We don't particularly have a public facing web site, thus users have to be logged into be able view data / access the ...
1
vote
4answers
62 views

Performance Testing Tool That Can Produce a Graph

Is anybody know a good testing tool that can produce a graph containing the CPU cycle and RAM usage? What I will do for ex. is I will run an application and while the application is running the ...
1
vote
2answers
129 views

Performance testing ArrayList in C#

I want to do a performance test on how fast an ArrayList(System.Collections - C#) can insert an item at the beginning. I've opened a file for reading lines of data from, set up a Stopwatch and also ...
1
vote
1answer
38 views

How to auto-optimize a Python application?

I have a complex Python server application, which is batch based. I want this application to work as fast a possible. In this application there are probably something like 100 integer constants that ...
1
vote
3answers
77 views

Performance improvement Calculation mumbo jumbo

Well the other day I improved the performance of a particualr piece of code from 34sec to 2 sec and I was calcuating the percentage for the same i.e (34-2)/34 i.e 94.11 percentage and when I told ...
1
vote
5answers
66 views

Site loading time improvement

today I was checking for the loading time of the site. I used net panle in firebug to see which resource takes how much time. I have attached the spanshot for the result. In this snalshot I ma bit ...
1
vote
2answers
215 views

Performance monitoring all layers of a system

I use several loadtesting tools (Loadrunner, JMeter, NeoLoad) to performance test different applications. Im wondering if it is possible to monitor all layers of an application stack so for example. ...
1
vote
2answers
155 views

jmeter with RC?

I'm using jmeter for performance testing.I used Selenium for functional testing.I want to test 10 users access same login page at same time.I can do that with jmeter. I want to open 10 browsers at ...
0
votes
3answers
106 views

Convert C# to C++ Bitwise shift

I have the following code in c# which reverses a string: char[] charArray = s.ToCharArray(); int len = s.Length - 1; for (int i = 0; i < len; i++, len--) { charArray[i] ^= charArray[len]; ...
0
votes
2answers
47 views

Do you know a good tool to test API performance?

I need to simulate 3G network and http requests from different geographical locations API: HTTP restful - JSON Geo Location: Europe, US Client: Mobile device
0
votes
1answer
34 views

How can we know each request's execution time?

This is a performance based question. I have developed a Java EE Webservice Application based on Apache CXF Web Services. The application is working fine without any issues currently. I just want to ...
0
votes
0answers
50 views

Running out of Memory In a Browser With JavaScript app on IPad

I'm having trouble getting a handle (figuratively) on how much memory I can use in my fairly large JavaScript application. I want to be able to make changes and determine whether my changes have a ...
0
votes
3answers
151 views

how facebook maintains a good speed for instant auto-suggestion

Facebook has the feature to show instant auto-suggestion result in-various situations such as : searching , message sending etc. i think I have been correct in terming the functionality as ...
0
votes
1answer
30 views

Finding Web Application Average Load Times

I am trying to find out the average time it takes various pages of a (private) web application for different users in remote locations. I know I can use Chrome Developer Tools, YSlow etc. To find out ...
0
votes
2answers
76 views

What is the SQL used to create the Running Vusers graph in LoadRunner Analysis?

In HP LoadRunner Analysis, there is a running vusers graph that shows the current number of virtual users that are running throughout the test. An example graph is shown below. Does anyone know ...
0
votes
0answers
77 views

Apache AB Benchmark tool

Am using APACHE benchmark for performance testing. When i run the command ab -n 50 -c 10 http://yahoo.com/. It output the results. Form this result how we conclude the Request per second. ...
0
votes
0answers
149 views

Comparison of Java application servers [closed]

I want to compare different Java application servers like Glassfish, JBoss, Geronimo, WebLogic, WebSphere, especially servers compatible with Java EE. Should I choose other, common used, servers? I ...
0
votes
0answers
74 views

Facebook application display friends functionality performance question

I have a facebook application and I want to display to a user their friends that are also using my application and some corresponding data I've recorded about those friends. My concern is that this ...
0
votes
2answers
158 views

Suggestion on web application performance test

I am planning to start a performance test against a web application. This application employs Ajax UI, SQL Server database backend, and a WCF business logic layer. So far, no performance has been done ...