Michel
Michel
@contra -- what is it for?
@williamstein -- I would have a few questions for you: - Do you hit a limit of the number of maximum files open? What the issues you have with too...
Actually a simple linked list should do the trick.
I finished replacing the circular buffer with a linked list. Tests are passing with and without the new argument. Install (branch `linkedList`) ``` npm install https://github.com/neumino/rethinkdbdash#ff01120c2ab588c95239d992b5b05235764f50d6 ``` Use ``` var...
Hum, I created a branch a long time ago and it was working, but there wasn't a strong need for this, and I think I eventually did not merge it...
Streams don't work with hinky. I think you want `execute({cursor: true})` in your last example
They are in the brand `gh-pages`
The ready event is available for Model, not globally at the moment. It shouldn't be too hard to add though.
Models are available in `thinky.models`, and you can call `ready` that will return a promise which will be resolved when the table and its indexes are available.
Another way to do it is also: ``` var promises = []; for(var name in thinky.models) { promises.push(thinky.models[name].ready()); } Promise.all(promises).then(function() { // thinky is ready }) ```