reqlite icon indicating copy to clipboard operation
reqlite copied to clipboard

Reqlite - RethinkDB in JavaScript

Results 28 reqlite issues
Sort by recently updated
recently updated
newest added

`balanace`, `configure` etc. don't work. The table systems are also absent. We could generate fake data.

missing feature

Hi Michel, I am day dreaming a little bit maybe but could reqlite become a Rethinkdb Peer like the Datomic Peer ? More and more people are trying to have...

feature

There are tons of TODOs left in the code. I won't open an issue for each of them. Some just require more testing, some are obsolete now, and some require...

feature
missing feature
hygiene

I don't know if it will work now, it's probably considering just one operation, not both. Test also orderBy.between.changes

test
missing feature

This require a lot of work, but we could do it (see the issue for r.range() for example).

hygiene

We currently don't build B-tree or any trees, we just scan the whole table. It's fun, but a bit hard to do I think.

hygiene

We currently support distance(point, point) but not distance(point, line). It seems that RethinkDB compute the geodesic considering the earth a sphere, find the closest point and then compute the distance...

missing feature

This is currently not supported for example ``` r.range().filter(function(value) { ... }).limit(10) ``` This is mostly because nothing is lazily evaluated (there wasn't a need to do so at the...

missing feature