Created
June 30, 2020 20:52
-
-
Save headius/87634a53f33a9fe512e43a08cfcb2423 to your computer and use it in GitHub Desktop.
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
[] ~/projects/jruby $ jruby -e "1000.upto(1010) {|i| puts i.hash}" | |
5850910177678188037 | |
-4122927456021001207 | |
4349978983989361182 | |
-5623858649709827614 | |
2849047790300534774 | |
-7124789843398654470 | |
1348116596611707855 | |
-8625721037087481389 | |
-152814597077119065 | |
8320091842933243307 | |
-1653745790765945921 | |
[] ~/projects/jruby $ jruby -e "1000.upto(1010) {|i| puts i.hash}" | |
-7227042336866544064 | |
-2770157313365699149 | |
1686727710135145767 | |
6143612733635990664 | |
-7846246316572715779 | |
-3389361293071870866 | |
1067523730428974035 | |
5524408753929818948 | |
-8465450296278887767 | |
-4008565272778042854 | |
448319750722802060 | |
[] ~/projects/jruby $ jruby -Xconsistent.hashing -e "1000.upto(1010) {|i| puts i.hash}" | |
-2980970509909832607 | |
-1858700091923459759 | |
-736429673937086975 | |
385840744049285873 | |
1508111162035658657 | |
2630381580022031505 | |
3752651998008404289 | |
4874922415994777137 | |
5997192833981149921 | |
7119463251967522769 | |
8241733669953895553 | |
[] ~/projects/jruby $ jruby -Xconsistent.hashing -e "1000.upto(1010) {|i| puts i.hash}" | |
-2980970509909832607 | |
-1858700091923459759 | |
-736429673937086975 | |
385840744049285873 | |
1508111162035658657 | |
2630381580022031505 | |
3752651998008404289 | |
4874922415994777137 | |
5997192833981149921 | |
7119463251967522769 | |
8241733669953895553 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment