Rob Evans

Results 119 comments of Rob Evans

That would be a cool extension. I think that Mongoose might even be something that we could modify to read from ForerunnerDB like it currently targets MongoDB.

There is an undocumented method in the Collection class called filter: ``` js /** * Executes a method against each document that matches query and returns an * array of...

Keep in mind that this is not in the documentation yet because I haven't decided if the order of the arguments is correct or not. I am wondering if the...

In fact I've just pretty-much talked myself into changing to "query, options, func" with an optional query and optional options. Gonna make that change now...

Also I wasn't sure if the process should allow for an async callback style system or just return data as an array immediately. I'm leaning towards async at this point.

This is a planned enhancement that came from a bug report #78

We could do the filterSync and filter in a node-style. I guess this goes to a larger argument about all the methods in ForerunnerDB and if we want to segregate...

OK I have just pushed version 1.4.1. This version has the new filter() method with "query, options, func" argument order. It is on the dev branch at the moment and...

Hi ya, Thanks for the issue report. I wonder if the item is actually being removed at all. The query you use with $eq should just be: ```js coll.remove({ _id:...

OK confirmed that $eq *does* work with .remove() so I'm now wondering if the QuotaExceededError is a bug somewhere in LocalForage... since all we are doing is asking LocalForage to...