aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/samples/measurements-10000-unique-keys.out
Commit message (Collapse)AuthorAgeFilesLines
* test: use temperature value of 1.0Alexander Yastrebov2024-01-041-1/+1
| | | | | | | | | | | In case of key collision broken implementation will likely attribute measurements to the wrong key and therefore it is better to have non-zero value to end up with a wrong average value. When all measurements are zero then averages are also zero even when attributed to the wrong keys. Updates #91
* test: add sample with 10k unique keysAlexander Yastrebov2024-01-041-0/+1
Input created via ```sh bash -c 'for i in {1..10000} ; do echo "id$i;0.0" ; done' >./src/test/resources/samples/measurements-10000-unique-keys.txt ``` and output via baseline implementation. Keys are short and very similar which improves chances for collision and hence are good for testing. Fixes #91