-
At SQL Server we can create a function that can be linked to a table, then we just retrieve that column name to get computed values.
With a function like this
```sql
CREATE FUNCTION [dbo].[ufn_A…
-
Is there any better way of getting a connection object that automatically reconnects than below? Closed connections keep throwing exceptions in random places in my code. I really don't care if my conn…
-
I know we can do something like this using .changes() but it would be awesome if RethinkDB had a way to handle it automatically.
-
Just wondering how I can pass `--bind` and `--canonical-address` in a `docker-compose.yml`?
-
I have a situation where the user sends a token from client via query params and I use the same to validate the session and store the the userId in the RP session.
```
options.sessionCreator = funct…
-
For my RethinkDB usecase, use over HTTP is an important characteristic, and I am willing to build a HTTP API client for rethinkdbdash.
Currently, I need to know modifications need to be made to reth…
-
We have a CLI task for keeping a redis cache populated from RethinkDB. It has a `--watch` argument which, when `true`, appends `.changes({ includeInitial: true })('new_val')` to each query used to reb…
-
It would be nice if ARM users could run RethinkDB natively.
Or even, if we could verify that the x86 build runs properly under emulation.
-
It would be good if there was a more verbose logging option. Right now, I haven't seen rethinkdb print out anything after starting up.
-
i would rather do:
``` js
var R = require('rethinkdb')
var r = new R()
r.connect()
r.table('asdf').get().run()
```
passing `conn` everywhere is no fun