rethink-scala icon indicating copy to clipboard operation
rethink-scala copied to clipboard

Scala Driver for RethinkDB

Results 13 rethink-scala issues
Sort by recently updated
recently updated
newest added

Is this project in works or is it abandoned?

Hi, I try using group() and count() on a table like : https://www.rethinkdb.com/api/java/group/ ``` r.table("matches").group( match -> r.array(match.g("date").year(), match.g("date").month()) ).count().run(conn); ``` ``` [ { "group": [2014, 2], "values": 2 },...

An official Java driver is currently in the works for rethinkdb: https://github.com/rethinkdb/rethinkdb/issues/3930 I think it may be worth considering writing this as a nice DSL layer on top of the...

Support for 2.0 new connection changes https://github.com/rethinkdb/rethinkdb/issues/3296

enhancement

It'd be nice to be able to easily use my play-json serializers with this library. That would make it really easy to use the same JSON representation in RethinkDB that...

http://rethinkdb.com/docs/changefeeds/

I get the following error when iterating over a result cursor: ``` java.lang.IndexOutOfBoundsException: 996 at scala.collection.mutable.ResizableArray$class.apply(ResizableArray.scala:43) ~[scala-library-2.11.6.jar:na] at scala.collection.mutable.ArrayBuffer.apply(ArrayBuffer.scala:48) ~[scala-library-2.11.6.jar:na] at com.rethinkscala.net.RethinkIterator.next(DefaultCursor.scala:29) ~[core_2.11-0.4.7.jar:0.4.7] at scala.collection.Iterator$class.foreach(Iterator.scala:750) ~[scala-library-2.11.6.jar:na] at com.rethinkscala.net.RethinkIterator.foreach(DefaultCursor.scala:9) ~[core_2.11-0.4.7.jar:0.4.7] at...

Hi, We are planning to use RethinkDB for our application and with Scala as our language, this driver is our primary choice. As we've started to use the driver however,...

Hi, I've been considering trying out RethinkDB. Since Scala is my favorite language, I'd naturally use the Scala driver. However, upon finding this project, I have some reservations about actually...

Load testing in a Play app showed that once the pool opens new connections to deal with the load, it does not close them when the load abates. To load...