rethinkdb-elixir icon indicating copy to clipboard operation
rethinkdb-elixir copied to clipboard

Rethinkdb client in pure elixir (JSON protocol)

Results 21 rethinkdb-elixir issues
Sort by recently updated
recently updated
newest added

Importing a module automatically requires it. (http://elixir-lang.org/getting-started/alias-require-and-import.html#import)

Add authentication via `:user` and `:pass` options. User accounts have been added to RethinkDB in version 2.3. The default options for connecting are `[user: "admin", pass: ""]`. The old authentication...

Hi there, thanks for the great package. It seems like outdated reads can be permitted like so: `table("table_name", read_mode: :outdated)` The docs here still talk about the `useOutdated` option though....

Polygons in Rethinkdb support having multiple holes, but the driver will error when parsing them with a `CaseClauseError`. This appears to be due to to the `RethinkDB.Pseudotype.Geometry.Polygon` struct assuming there...

@samginn I'm opening this issue to explore the big document perf in https://github.com/devinus/poison/issues/90

### Poolboy Poolboy works by providing exclusive access to a given resource in a "transaction". Pros: - Dynamic connection allocation is taken care of for you. Cons: - Connection affinity...

feedback wanted
Connection

Right now when I get a query back I need to match on one of the structs `RethinkDB.Response`, `RethinkDB.Collection` or `RethinkDB.Record`. The problem I'm running into is a tad convoluted...

Right now they don't support options. They should.

I'm trying to get started using this library, and I was excited to find the [Ten Minute Guide with Rethinkdb Elixir](https://github.com/hamiltop/rethinkdb-elixir/wiki/Ten-minute-guide-with-RethinkDB-Elixir), but it doesn't contain anything specific to rethinkdb-elixir. I...