Rob Evans
Rob Evans
Thinking about it more, the way it currently works is it takes the entire collection data as an array and then stringifies it and then saves it to persistent storage....
@dmccarrick Hey ya. We are going to either have to assume the data doesn't exist if it is not in the format expected, or we are going to have to...
Hi there. According to the documentation on that page, you just need to load the sql lite driver after loading localforage. Since localforage gets wrapped in ForerunnerDB's code you can...
Awesome. I'll add it to the docs!
Thanks for this, have confirmed the bug, will push a fix shortly...
Hi there, thanks for your question! The load() method does indeed load everything into memory so pagination is irrelevant for your use case. 50MB of data is a lot of...
Also, if all you need is a very simple query system and would prefer to add your own persistent storage layer in you can take a look at https://github.com/Irrelon/irrelon-path That...
Hi ya, Bit confused here... why don't you just send and receive JSON? Is there a specific case where you need to manipulate the .db files directly?
Hey, So my understanding from your message: 1) You have a large data set 2) You want to use ForerunnerDB because it makes it really easy to query that data...
Yes you can import and export from ForerunnerDB in JSON format easily. To import just create a collection and use insert() or setData(). To export, simply run a find query...