Daniel Compton

Results 358 comments of Daniel Compton
trafficstars

`row` doesn't seem to be a standard query term, it's not in QL2.proto. Will need to look at JS driver source to understand what it's doing.

> TCP Keepalive > > In this release we’re enabling TCP Keepalive in all three of the > official drivers to help detect lost connections in the case where >...

@sritchie see #68 and follow the links to understand more about this until I have the chance to document it properly. I think that's part of the problem but there...

@sritchie you could call http://rethinkdb.com/api/javascript/coerce_to/, although this isn't necessarily the best as it will result in higher memory usage on the server. Take a look at the different types that...

@sritchie I've opened https://github.com/rethinkdb/rethinkdb/issues/4616 about this.

The full details are in https://github.com/rethinkdb/rethinkdb/issues/4616 and https://github.com/rethinkdb/docs/pull/843, but the short version is that this is a deficiency in the current driver. Both of those results should be returned in...

I need to think about this a bit more, but my first thoughts are: - The token needs to be unique to RethinkDB for each query. I'm not sure what...

Another approach is to put errors onto the same channel and the user is responsible for handling them all in the same codepath: https://github.com/mpenet/alia/blob/master/src/qbits/alia.clj#L399-L437.

In the spirit of solving all problems with one more layer of indirection, you could have multiple unique RethinkDB query tokens routed to the same core.async channel by sharing a...

https://github.com/apa512/clj-rethinkdb/pull/50#issuecomment-117531605