Update README.md

This commit is contained in:
Aaron Boodman
2016-06-13 16:12:57 -07:00
committed by GitHub
parent e5139d60cc
commit 2d3dd6d925

View File

@@ -8,6 +8,7 @@ Binary is faster no matter the size of the numbers.
As of June 3rd, these are the numbers I get on a MacBook Pro 2.7 GHz Intel Core i5.
```
$ ./run.sh
small numbers save a lot of space as strings
@@ -47,9 +48,10 @@ IO 90 MB (10,000,000 nums) in 11.259321946s (8.0 MB/s)
then if we special case small integers we get even more space savings
encoding: binary-varint from: 0 to: 10000000 by: 1
IO 49 MB (10,000,000 nums) in 10.096619263s (4.8 MB/s)
```
TODO:
- Implement flag for setting precision
- Implement randomized numbers rather than in sequence incremental numbers
- Look at go package "encoding/gob", optimized for performance
- Implement read/write to/from file to connect to JS implementation
- Implement read/write to/from file to connect to JS implementation