Skip to content

Instantly share code, notes, and snippets.

@nelhage
Created May 6, 2014 21:36
Show Gist options
  • Save nelhage/9269f73113b3cd295bc3 to your computer and use it in GitHub Desktop.
Save nelhage/9269f73113b3cd295bc3 to your computer and use it in GitHub Desktop.
[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