Skip to content

Commit

Permalink
timeout handled
Browse files Browse the repository at this point in the history
  • Loading branch information
Scooletz committed Mar 11, 2024
1 parent 9bab523 commit 4a37702
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Paprika.Tests/Store/DataPageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void Spinning_through_same_keys_should_use_limited_number_of_pages()

var data = new DataPage(page);

const int spins = 2_000;
const int spins = 200;
const int count = 1024;

for (var spin = 0; spin < spins; spin++)
Expand Down
4 changes: 2 additions & 2 deletions src/Paprika.Tests/Store/DbTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ public async Task Spin_large()
const int size = MB256;
using var db = PagedDb.NativeMemoryDb(size);

const int batches = 50;
const int storageSlots = 20_000;
const int batches = 25;
const int storageSlots = 10_000;
const int storageKeyLength = 32;

var value = new byte[32];
Expand Down

0 comments on commit 4a37702

Please sign in to comment.