Skip to content

Commit 45ebba1

Browse files
committed
Tweak benchmark values
1 parent 5c25340 commit 45ebba1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Akka.Persistence.Benchmarks/Benchmarks/GroupPersistBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Akka.Persistence.Benchmarks.Benchmarks;
99
public abstract class GroupPersistBenchmark: BenchmarkBase
1010
{
1111
private const int GroupSize = 10;
12-
private const int TestMessageCount = 5_000;
12+
private const int TestMessageCount = 1_000;
1313
private const int TotalMessageCount = TestMessageCount * GroupSize;
1414

1515
private IActorRef[]? _persistenceActors;

src/Akka.Persistence.Benchmarks/Benchmarks/PersistBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Akka.Persistence.Benchmarks.Benchmarks;
77

88
public abstract class PersistBenchmark: BenchmarkBase
99
{
10-
private const int TestMessageCount = 2_500;
10+
private const int TestMessageCount = 1_000;
1111

1212
private IActorRef? _persistenceActor;
1313

src/Akka.Persistence.Benchmarks/Benchmarks/RecoveryBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Akka.Persistence.Benchmarks.Benchmarks;
77

88
public abstract class RecoveryBenchmark: BenchmarkBase
99
{
10-
private const int TestMessageCount = 10_000;
10+
private const int TestMessageCount = 2_000;
1111

1212
private IActorRef? _persistentActor;
1313
private IActorRef? _watchActor;

0 commit comments

Comments
 (0)