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

Better docs on Reqlite and what is missing

Open Slava opened this issue 9 years ago • 8 comments

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.

Slava avatar May 01 '15 21:05 Slava

Can you open the issues panel back up for reqlite? I'd like it to document missing features.

zephraph avatar May 01 '15 23:05 zephraph

What is issue backup panel?

Slava avatar May 01 '15 23:05 Slava

I think you misunderstood or I miss stated.. Issues are disabled for the reqlite repository.

zephraph avatar May 01 '15 23:05 zephraph

They are open here: https://github.com/neumino/reqlite

Slava avatar May 01 '15 23:05 Slava

Oh, my apologies. Cool, thanks.

zephraph avatar May 01 '15 23:05 zephraph

Cities.orderBy(r.desc('population')).run() works on server but not on client. Is that an example of something reqlite doesn't support?

image

lorensr avatar May 02 '15 00:05 lorensr

@lorensr Yes, also I tried add, that didn't work too.

Slava avatar May 02 '15 00:05 Slava

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); });

puruzio avatar Nov 21 '15 19:11 puruzio