Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cache arbitrary queries #1

Open
lorensr opened this issue Apr 8, 2019 · 0 comments
Open

Cache arbitrary queries #1

lorensr opened this issue Apr 8, 2019 · 0 comments
Labels
enhancement New feature or request help wanted Extra attention is needed

Comments

@lorensr
Copy link
Member

lorensr commented Apr 8, 2019

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 of all these query properties:

https://github.com/boblauer/cachegoose/blob/master/src/extend-query.js#L70

Don't know if any of that is specific to Mongoose.

How to intercept queries?

Cachegoose monkeypatches mongoose.Query.prototype.exec:

https://github.com/boblauer/cachegoose/blob/master/src/extend-query.js#L6-L8

Ideally we would support the mongodb library as well.

Cachegoose also does aggregations, which we could do.

@lorensr lorensr added enhancement New feature or request help wanted Extra attention is needed labels Apr 8, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant