php-rql
php-rql copied to clipboard
A PHP client driver for the RethinkDB query language (ReQL).
I'm working on setting up RethinkDB as a cache layer for Drupal and I saw that when I'm querying a MySQL server the response time is 0.7 seconds and when...
The group function had some problem with the arguments. ex. the way arguments were passed was not like the js api Also the "multi" option was ignored I hope that...
I was trying to run this query which works perfectly on RethinkDB's Query Browser and JS Driver: ``` r.branch( r.expr(x).match('^avg'), r.expr(r.table('test')('statistics')(x).avg()), r.expr(x).match('lg'), r.expr(r.table('test')('statistics')(x).max()), r.expr(r.table('test')('statistics')(x).sum()) ) ``` But in PHP when...
In a similar way to `dateFormat`/`binaryFormat`, this allows the user to specify the type of returned documents via the `documentFormat` option. Passing 'array' will mean documents are returned as native...
Hello and sorry in case this issue is stupid I don't know if I am missing something, but I think that the "or" and "and" operations are supposed to support...
Hello, the contains function from the php-rql driver only supports one argument, but the JS driver supports multiples arguments. Plus, the rAnd function should also support multiple arguments, like the...
Is it possible to add specific error codes for `RqlException`, `RqlServerError` or `RqlDriverError`? In some cases, this would make error checking much easier. E.g.: `throw new RqlDriverError("Failed to encode document...
It would seem that testing a response is extremely cumbersome. First, the response is returned as an object, and needs to be typeset to an array (as all it's properties...
Hi, First and foremost, thanks for making this client :) As a suggestion, I would propose an idea that will make the insertion of dates to the database a bit...