This repository was archived by the owner on Dec 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
tests/ServiceStack.Redis.Tests Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ public void onBeforeTestFixture()
22
22
testData = TypeSerializer . SerializeToString ( results ) ;
23
23
}
24
24
25
- [ Explicit ]
26
25
[ Test ]
27
26
public void Can_support_64_threads_using_the_client_simultaneously ( )
28
27
{
@@ -45,7 +44,9 @@ public void Can_support_64_threads_using_the_client_simultaneously()
45
44
46
45
WaitHandle . WaitAll ( clientAsyncResults . ConvertAll ( x => x . AsyncWaitHandle ) . ToArray ( ) ) ;
47
46
48
- Debug . WriteLine ( String . Format ( "Completed in {0} ticks" , ( Stopwatch . GetTimestamp ( ) - before ) ) ) ;
47
+ Debug . WriteLine ( string . Format ( "Completed in {0} ticks" , ( Stopwatch . GetTimestamp ( ) - before ) ) ) ;
48
+
49
+ RedisStats . ToDictionary ( ) . PrintDump ( ) ;
49
50
}
50
51
51
52
[ Test ]
Original file line number Diff line number Diff line change @@ -410,7 +410,9 @@ public void Can_support_64_threads_using_the_client_simultaneously()
410
410
411
411
WaitHandle . WaitAll ( clientAsyncResults . ConvertAll ( x => x . AsyncWaitHandle ) . ToArray ( ) ) ;
412
412
413
- Debug . WriteLine ( TypeSerializer . SerializeToString ( clientUsageMap ) ) ;
413
+ RedisStats . ToDictionary ( ) . PrintDump ( ) ;
414
+
415
+ Debug . WriteLine ( TypeSerializer . SerializeToString ( clientUsageMap ) ) ;
414
416
415
417
var hostCount = 0 ;
416
418
foreach ( var entry in clientUsageMap )
You can’t perform that action at this time.
0 commit comments