Skip to content

Commit

Permalink
change benchmark case
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Dec 4, 2012
1 parent 00341b5 commit c07c55f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/com/alibaba/druid/benckmark/pool/Case1.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ public class Case1 extends TestCase {
private int maxPoolSize = 50;
private int maxActive = 50;
private String validationQuery = "SELECT 1";
private int threadCount = 2;
private int loopCount = 5;
final int LOOP_COUNT = 1000 * 500;
private int threadCount = 1;
private int loopCount = 10;
final int LOOP_COUNT = 1000 * 1000 * 1 / threadCount;

protected void setUp() throws Exception {
jdbcUrl = "jdbc:h2:mem:";
Expand Down

0 comments on commit c07c55f

Please sign in to comment.