-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(memory-leaks): introduce Tasks.Arrays.Length
- Loading branch information
Showing
2 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
using YDotNet.Tests.Driver.Tasks.Arrays; | ||
|
||
new Iterate().Run(); | ||
new Length().Run(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
using YDotNet.Document; | ||
using YDotNet.Document.Cells; | ||
using YDotNet.Tests.Driver.Abstractions; | ||
|
||
namespace YDotNet.Tests.Driver.Tasks.Arrays; | ||
|
||
public class Length : ITask | ||
{ | ||
public Task Run() | ||
{ | ||
var count = 0; | ||
|
||
// Create many documents | ||
while (count < 1_000_000) | ||
{ | ||
// After 1s, stop and show the user the amount of documents | ||
if (count > 0) | ||
{ | ||
Console.WriteLine("Status Report"); | ||
Console.WriteLine($"\tArrays:\t{count}"); | ||
Console.WriteLine(); | ||
} | ||
|
||
if (count % 1_000 == 0) | ||
{ | ||
Thread.Sleep(millisecondsTimeout: 15); | ||
} | ||
|
||
// Create many documents | ||
for (var i = 0; i < 100; i++) | ||
{ | ||
var doc = new Doc(); | ||
var array = doc.Array($"sample-{i}"); | ||
|
||
var transaction = doc.WriteTransaction(); | ||
array.InsertRange(transaction, index: 0, new[] { Input.Long(value: 2469L) }); | ||
var _ = array.Length; | ||
transaction.Commit(); | ||
|
||
doc.Dispose(); | ||
count++; | ||
} | ||
} | ||
|
||
return Task.CompletedTask; | ||
} | ||
} |