meteor-rethinkdb
meteor-rethinkdb copied to clipboard
Better docs on Reqlite and what is missing
Right now the project is using Reqlite and it is missing a lot of features from the reql language. Documenting those and a call for contributions is the first step for a more complete support.
Can you open the issues panel back up for reqlite? I'd like it to document missing features.
What is issue backup panel?
I think you misunderstood or I miss stated.. Issues are disabled for the reqlite repository.
They are open here: https://github.com/neumino/reqlite
Oh, my apologies. Cool, thanks.
Cities.orderBy(r.desc('population')).run()
works on server but not on client. Is that an example of something reqlite doesn't support?
@lorensr Yes, also I tried add
, that didn't work too.
Join queries (e.g. below) don't seem to have been implemented in reqlite. Since these queries can still be run on the server (right?), is there a way to send the data to the client without using reqlite?
Meteor.publish("join_pub", function () { return Cities.eqJoin("country", r.table("regions"), {index: "country"}).limit(100); });