Re: [w3c/IndexedDB] Support N-dimensional queries on indexes (#40)

I agree this is a problem, but I would rather have a general-purpose API to query across multiple indexes, rather than limiting this to a single index. E.g. consider `SELECT * WHERE age > 30 && lastName === 'Lawson'`.

This would have the benefit of solving a further existing problem with IDB indexes, which is that (in the case of the above example), either `age` or `lastName` would have to be done in-memory in JavaScript. (FWIW this is actually a problem we have in PouchDB right now, with the `allDocs() API` as described in #92.)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/40#issuecomment-248950618

Received on Thursday, 22 September 2016 16:13:26 UTC