Loren ☺️
Loren ☺️
Instead of the current section numbers on the right:  Could try using this: https://github.com/lwchkg/gitbook-pdfgen
make client libraries stand out more, or streamlined less ``` # Client libraries ... ## Streamlined request function ``` 
I rarely have time for reviewing PRs and making releases—would be happy to find someone interested in taking that on! Let me know if you're interested in helping out: `[email protected]`
Currently if a request triggers N `findOneById(123)` calls (all with the same id), and the cache is empty, there will be N calls to `cache.set(123, doc)`. It would be nice...
We could combine queries with an `$or` like in @pcorey's article: http://www.petecorey.com/blog/2017/08/21/advanced-mongodb-query-batching-with-dataloader-and-sift/ How useful is that? We'd have fewer network requests to the server, but I imagine the bulk of...
## What to use as the cache key? SQLDataSource uses the SQL query string: https://github.com/cvburgess/SQLDataSource/blob/master/SQLCache.js#L19 Don't know if there's an equivalent for MongoDB. Cachegoose (caching for Mongoose) uses a hash...