docs
docs copied to clipboard
RethinkDB documentation
Update the docs to point out which methods don't guarantee the results will be ordered as "expected". For example, `getAll(1, 2, 3)` doesn't ensure the results are ordered as `[{id:...
See https://github.com/rethinkdb/rethinkdb/issues/2774#issuecomment-319684100
Evictions are described in the two comments mentioned here: https://github.com/rethinkdb/rethinkdb/issues/5823#issuecomment-228455004 Write Hooks are described in the comments here: https://github.com/rethinkdb/rethinkdb/issues/5813 I'll add more detail to this issue when both are finished...
The [limitations page](https://github.com/rethinkdb/docs/blame/master/8-architecture/limitations.md#L28) incorrectly states the the maximum size of a JSON query is 64MB. The current true value is 128MB as per: https://github.com/rethinkdb/rethinkdb/blob/v2.3.5/src/client_protocol/protocols.cc#L8. Bonus: would also be handy if...
``` r.table('table').insert({ id: id, session: session, sockets: [{ id: socket_id }] }, {conflict: function(id, oldDoc, newDoc) { return newDoc.merge({ session: session, sockets: sockets(oldDoc('sockets'), newDoc('sockets')) }); }}) ``` Adding new objects...
Pasted from https://github.com/rethinkdb/rethinkdb/issues/6304 -- see for some responses. ---- Please consider documenting how arrays are serialized, in regards to their use for primary keys. On RethinkDB 2.3.5, a simple `r.table("test").get([...])`...
The ReQL documentation for `sample` does not seem to state whether or not the command can return the same document more than once in its results. This could be useful...
We should add an article detailing patterns and solutions for scaling changefeeds in productions. One example: using `rethinkdb proxy` nodes to increase the number of open changefeeds, without actually storing...
I saw this comment when looking at the IRC logs. Does cursor.toArray() or other driver equivalents call cursor.close()? The docs are not clear on if I should be calling cursor.close()...
This contributing page in rethinkdb website - https://rethinkdb.com/contribute/ points to `http://localhost:8088/docs/install` instead of the absolute path pointing to the rethinkdb.com domain. I searched around for main website's repository, but I...