Created
May 6, 2014 21:36
-
-
Save nelhage/9269f73113b3cd295bc3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[nelhage@aeronautique:~]$ time ruby -rbson -e1 | |
real 0m0.281s | |
user 0m0.233s | |
sys 0m0.042s | |
[nelhage@aeronautique:~]$ cd /tmp/ | |
[nelhage@aeronautique:/tmp]$ cat > bson.go | |
package main | |
import _ "labix.org/v2/mgo/bson" | |
func main() {} | |
[nelhage@aeronautique:/tmp]$ go build bson.go | |
[nelhage@aeronautique:/tmp]$ time ./bson | |
real 0m0.003s | |
user 0m0.001s | |
sys 0m0.002s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment