Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

277
votes
4answers
8k views

Try-catch speeding up my code?

I wrote some code for testing the impact of try-catch, but seeing some surprising results. static void Main(string[] args) { Thread.CurrentThread.Priority = ThreadPriority.Highest; ...
16
votes
3answers
241 views

C# Lambda performance issues/possibilities/guidelines

I'm testing performance differences using various lambda expression syntaxes. If I have a simple method: public IEnumerable<Item> GetItems(int point) { return this.items.Where(i => ...
13
votes
1answer
269 views

Performance test sql queries

We have two identical Oracle Exadata quarter racks each running a pair of database instances. My wet-finger-in-the-wind performance tests indicate that one is running at a quarter of the speed of the ...
10
votes
2answers
269 views

Entity Framework Performance Issue

I am running into an interesting performance issue with Entity Framework. I am using Code First. Here is the structure of my entities: A Book can have many Reviews. A Review is associated with a ...
10
votes
6answers
2k 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. ...
9
votes
3answers
689 views

How to load 100 million records into MongoDB with Scala for performance testing?

I have a small script that's written in Scala which is intended to load a MongoDB instance up with 100,000,000 sample records. The idea is to get the DB all loaded, and then do some performance ...
8
votes
3answers
447 views

Performance testing utilities for C++

I was curious whether anyone has any suggestions for performance testing libraries and frontends that will produce nice graphical charts for C++ (like how gcov produces coverage data and there are ...
7
votes
2answers
129 views

Static block vs static method - initializing static fields

Out of curiosity, I measured the performance between static block and static method initializer. First, I implemented the above mentioned methods in two separate java classes, like so: First: class ...
7
votes
1answer
218 views

Sql Server 2008 R2 DC Inserts Performance Change

I have noticed an interesting performance change that happens around 1,5 million entered values. Can someone give me a good explanation why this is happening? Table is very simple. It is consisted of ...
6
votes
2answers
1k views

How to performance/benchmark testing a Rails app with real world database?

I would like to performance testing a Rails app. The real world data is 100 MB in size. But Rails always rebuilds the test database, which overwrites the real world data. So how to the performance ...
6
votes
2answers
245 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 ...
6
votes
4answers
213 views

Resistance to performance testing for a big bang rewrite?

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 performance ...
5
votes
3answers
131 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
343 views

Garbage Collection Overhead Help Needed

I am looking for a little bit of guidance in trying to diagnose a GC related issue. We are testing on Solaris with WebSphere Portal and my current environment has a Garbage Collection Overhead of 7% ...
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
0answers
26 views

.NET library to run performance test for web

I have test writen on C# with Selenium Webdriver. now i need testing performance of application. i used FiddlerCore but it donesn't have page rendering time or time of dynamiс content(ajax,js and ...
3
votes
2answers
60 views

How does one design load tests for a website?

I've recently been thinking how to test the performance of our webapps before we put them live. I know that we can't replicate actual user activities for this test because it's new functionality. I ...
3
votes
2answers
283 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: // ...
3
votes
2answers
102 views

TSQL equivalent of PostgreSQL “PERFORM” keyword?

I'm testing query performance in a loop. Rather than return a hundred duplicates of a result set, I want to run a select statement hundreds of times, discarding the results each time. PostgreSQL has ...
3
votes
1answer
563 views

apache bench gnuplot output - what are the column definitions?

I am using ApacheBench to get some basic timing information. Meeting my needs very well. I noticed that "-g file" creates a tab delim'ed file with each call as a row. I am unable to determine the ...
3
votes
3answers
386 views

Performance testing on node.js “net”

Does anyone have any recommendations on how to get started with node.js "net" performance testing? I want to see how my app will scale and want to test 10,000+ concurrent connections! EDIT: I want ...
3
votes
1answer
537 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 ...
3
votes
1answer
205 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.
3
votes
3answers
129 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 ...
2
votes
1answer
84 views

Java performance tuning, JNI memory leak

I have a Java application. It is a Linux platform. and we are using Java 6. It is normal sdk java plus some JNI. We using visualvm to monitor the memory leak. We notice from visualvm application ...
2
votes
4answers
62 views

Automated performance tests

At our company we have unit tests. We are thinking of writing some automated performance tests that will also be part of the test suite, so that both developers and the automated build will run them. ...
2
votes
1answer
58 views

Running a single rails performance test

I am trying to run a single benchmark in the test/performance/ directory. kinda like rake test:benchmark would do, but only with a single test. The reason for this is because the whole performance ...
2
votes
1answer
96 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 ...
2
votes
1answer
83 views

Benchmarking some Javascript Frameworks

So first of all, I'm going to be benchmarking some functions in different javascript frameworks. And I was wondering what kind of programs I can use to monitor resources like MEM% usage, CPU% usage, ...
2
votes
2answers
42 views

Comparing performance between two method implementations in .NET

I want to make a change to the way that a particular method in my code has been implemented. Before committing that change to production, I'd like to make sure that my changes have no or minimal ...
2
votes
4answers
422 views

Jmeter - simulating more complex load scenarios?

Been experimenting with Jmeter, and I'd like to know the best way to accomplish: 20 users logging onto an application, over 20 minutes, and performing some actions for another 20 minutes, before ...
2
votes
3answers
290 views

Small performance test on a web service

I'm trying to develop a small application that tests how many requests per second my service can support but I think I'm doing something wrong. The service is in an early development stage, but I'd ...
1
vote
0answers
36 views

Performance testing tool for Qt, Pyside desktop application

I am developing a desktop application using Qt (Pyside) and Python. I want to test performance of application, I search for performance testing tool but didn't find any tool. Please suggest any good ...
1
vote
2answers
73 views

Performance testing two methods of PowerShell integer division

Microsoft technet suggests [Math]::Floor([int]$a / [int]$b) for integer division. I believe that [int][Math]::Floor($a / $b) is both more readable as well as more performant due to one less cast ...
1
vote
0answers
13 views

Coded ui to measure performance [migrated]

I have been tasked with using coded UI to measure performance on a proprietary windows desktop application. The need is to measure how long it takes for the next page/screen to display after a user ...
1
vote
4answers
55 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
36 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
2answers
44 views

How to stress and load test flash games like Mafia Wars, Farmville

We're devoloping a flash game which have a php and mongodb backend.. It's kinda like FarmVille and other zynga games. How can we make fully load test to cover possible performance issue earlier? ...
1
vote
1answer
75 views

Load testing in Play! framework

How do you perform load testing in a Play! project? Do you use external tools ? if so, which one is best integrated with Play? Or does Play! have provided some feature about it? (I'm using Eclipse ...
1
vote
3answers
126 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 ...
1
vote
1answer
29 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
55 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
109 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
70 views

How can I reliably kill every jQuery event wired up, regardless of event type, handler or DOM element

Using the fantastic (yet cruelly not accepted) post on this question: List all javascript events wired up on a page using jquery I have discovered that it's possible to query the jQuery events cache ...
1
vote
1answer
95 views

No expected output for my performance testing

I want to do a performance test for my rails 3 app and I did a try according to the rails online guide rake test:profile and it gave some output as: Specify ruby-prof as application's dependency ...
1
vote
1answer
49 views

asp .net Application performance

I have an asp .net 4.0 application. I have an mdf file in my app_data folder that i store some data. There is a "User" table with 15 fields and an "Answers" table with about 30 fields. In most of the ...
1
vote
1answer
37 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
65 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
8answers
156 views

How can I prove that one algorithm is faster than another in Java

Is there anything in Java that would allow me to take a code snippit and allow me to see exactly how many "ticks" it takes to execute. I want to prove that an algorithm I wrote is faster than ...
1
vote
2answers
234 views

How many threads/users can one Windows client simulate during my load test?

I'm planning to do a load test of our ASP/.NET web application and need to simulate about 600 concurrent users on our system. Initially we'll just be running the load test tools (probabaly JMETER or ...

1 2 3