Michel
Michel
I have an old branch on the `www` repo that has a Mongo to ReQL cheat sheet. If I'm not mistaken, I just need to write about Mongo's aggregation framework...
We should write an example on how to catch errors and how to access the error types (in all languages) It's somehow the documentation for https://github.com/rethinkdb/rethinkdb/issues/1926
We use the terms `row` and `document` in the docs. Let's just use `document`.
One connection per request vs pool See https://groups.google.com/forum/?fromgroups#!topic/rethinkdb/8cS-w0IzTJU
See http://pastebin.com/GGqiqbKu We should actually write a whole example on how to connect, bind listeners for errors, run a query, close the connection.
If someone does a write (like an insert), a few things can happen - They can get back an error (if a table doesn't exist for example) - They can...
With the input/ouput would be really nice.
We don't really explain how cursors work. If a driver get a `SUCCESS_PARTIAL` response, he can get back more data by sending `CONTINUE`. We should also mention that - a...
There are two packages, `lib64ncurses5-dev` and `libncurses5-dev`. The instructions we have are probably only for 64 bits. Also, there is a note at the bottom about `--fetch npm` that we...
The current example relies on the fact that `fetchNext` is declared in the callback of `run`. Users can create a unique callback with something like that: ``` js var fetchNext...