You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was a test script to check the probability of collision based upon the # of allowed chars(needs to be double checked)
import math
n = 52500 # Number of expected unique items
m = 62**8 # Number of possible unique combinations for 8-character Base62
probability = 1 - math.exp(-(n**2) / (2 * m))
print(probability)
It's possible to get a duplicate stamp hash since we are truncating it... Need to check on the db if there is a collision and regenerate if needed.
The text was updated successfully, but these errors were encountered: