Ken Carpenter
Ken Carpenter
Looks like this might already be possible by passing in a mongoose instance to the options object that is wrapped by NeDB: https://github.com/aerys/mongoose-nedb https://github.com/aerys/mongoose-nedb/blob/master/lib/connection.js https://github.com/aerys/mongoose-nedb/blob/master/lib/collection.js That package does not seem...
For my use case, I need persistence (it's for a small, Raspberry-Pi-like device), and data would be streaming in quite frequently. If I can get 2GB of RAM onto the...
I've mainly used MongoDB and MariaDB/MySQL, but I also really liked RethinkDB before the company went under. I sort of lost hope for it, but it looks like the community...
Most pagination APIs don't require you to send page numbers, but rather item numbers. You provide `start` as the starting item number, and `limit` as the maximum number of items...
I have a similar issue, but with z-index. Due to stacking context issues, sometimes it is impossible for the tour tip to be on top and it gets obscured by...
Thanks, that description makes sense. Just to confirm my understanding, if I do the following (pseudocode syntax): ``` var doc = Class.getJoin({school: true}); doc.schoolId = someId; doc.saveAll({school: true}); ``` Then...
No worries on the timing of this one. I can easily work around it for now. I haven't looked at the code for this yet, but could you perhaps provide...
I agree with @mattkrick that we don't need a guarantee that you can call `save` after getting a doc. If I get a doc and call `pluck` or otherwise include/exclude...
I suppose we could always move the code to calculate lastPos into a function and call it on release too so we are sure to get the last mouse position.
No solution or root cause yet, but here are a few additional notes from my investigation today: • The mousemove handler is being called for all mouse moves immediately as...