reqlite
reqlite copied to clipboard
Reqlite - RethinkDB in JavaScript
`balanace`, `configure` etc. don't work. The table systems are also absent. We could generate fake data.
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...
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...
I don't know if it will work now, it's probably considering just one operation, not both. Test also orderBy.between.changes
This require a lot of work, but we could do it (see the issue for r.range() for example).
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.
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...
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...