Daniel Compton

Results 358 comments of Daniel Compton
trafficstars

The last time I looked, the Java driver didn't have any [async support](https://github.com/rethinkdb/rethinkdb/issues/5345) which means each changefeed would tie up a whole thread (I think). It's not uncommon to have...

Totally agree, it's a bit of a bummer. Now that there's a bit more certainty around RethinkDB, people (including me) may be able to invest more time into the Java...

Not quite sure what you mean by open up, but I'd be happy to see it as a PR, or as a separate project?

Hey! Here's how we do it: 1. Generate queries in cljs 2. Send them to the server (we use Transit and Sente) 3. Validate the queries are safe 4. Other...

You can already do this :) Run `(r/db :mydb)` and look at the output. Then run `(-> (r/db :mydb) (r/table :mytable))`. The query is built up as data, then converted...

Currently, if you get a stream back (either success sequence, or success partial), all of the rows in the stream are put as one 'item' on the core.async channel. I'm...

It should also be possible to piggy back on top of the RethinkDB Java driver when it is ready (https://github.com/rethinkdb/rethinkdb/issues/3930).

This looks like the same issue as #69? What happens is that RethinkDB returns different result types based on the size of the results. We should be returning a cursor...

When I was thinking about this, I imagined we'd mock out the connection to RethinkDB to keep things reproducible, and to focus on the performance of the driver (which we...