Skip to content

Commit

Permalink
Decreased keysize again
Browse files Browse the repository at this point in the history
  • Loading branch information
olapiv committed Oct 30, 2024
1 parent 4f13c31 commit 27f9a1e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pink/rondis/tests/get_set.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,13 @@ echo "Testing medium string (100 characters)..."
medium_value=$(head -c 100 < /dev/zero | tr '\0' 'a')
set_and_get "$KEY:medium" "$medium_value"

# Minimal amount to create value rows
echo "Testing large string (30,000 characters)..."
large_value=$(head -c 30000 < /dev/zero | tr '\0' 'a')
set_and_get "$KEY:large" "$large_value"

# Too large values seem to fail due to the network buffer size
# Minimal amount to create value rows: 30000

# TODO: Increase this as soon as GH actions allows it
echo "Testing large string (10,000 characters)..."
large_value=$(head -c 10000 < /dev/zero | tr '\0' 'a')
set_and_get "$KEY:large" "$large_value"

# echo "Testing xl string (100,000 characters)..."
# xl_value=$(head -c 100000 < /dev/zero | tr '\0' 'a')
Expand Down

0 comments on commit 27f9a1e

Please sign in to comment.