Ryan Wynn

Results 166 comments of Ryan Wynn

i updated my original posted code to account for the buffering.

Can you post the full code that does not work? Also, does it work with or without the `Println`?

Even when I add the `Println` like you have I still come up with the same number, in my case a collection of size `4000012`. Using go version 1.13.4 linux/amd64...

@mosesBD, I think I found the mistake on my part. It was silly. The condition for the `for` loop should be ```golang for !errsDone || !opsDone { ``` Notice the...

Thanks for the contribution! This makes sense. Request: Can you change the field name from`RawFullDoc` to simply `BSONDoc`? I think I can merge it otherwise.

Actually, also can you make the type `bson.Raw` on `Op` also instead of `interface{}`? That would make it easier for cosumers to unmarshal I think.

`Op.Data` was added first, it is your MongoDB data as a go map. Later, `Op.Doc` was added so that the type could be changed to `interface{}`. This allows one to...

In this case the namespace is ` database + . + collection`. So `users` is a database and both `users` and `status` are MongoDB collections in that database. This example...

@maustin75 Sorry for taking a while to respond to your question. I guess it depends on the error and in this regard gtm could probably give you more structured information...

Monstache uses [otto](https://github.com/robertkrimen/otto) for it's javascript interpreter.