Michel

Results 249 comments of Michel

Oh, I didn't know that you could pass the read mode in the `table` command. At the moment the only way to pass the read mode is to set it...

Why do you think it's possible with only callback? As far as I know, it works with or without callbacks.

How do you test that it doesn't work

I just tested it and it's working for me.

First if you just append, you can never lose a comment as long as the write is successful since RethinkDB provide atomicity per document. ``` r.table('posts').get(21).update(function(post) { post.merge({ comments: post('comments').append({id:...

This is expected. What can happen is ``` server 1 get the item server 2 get the same item serve 1 write the document server 2 overwrite the document ```...

Well the first goal is to reach parity (which isn't that far). Then building something like Datomic peer is building a whole new software on top of it. I don't...

I don't remember exactly why. Maybe because nested fields are not supported?

So `save` will save this document, basically all the fields defined in the document. `saveAll({key1: ..., key2: ..., keyn: ...})` will look at the joined documents in `key1` to `keyn`,...