We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
Cachegoose monkeypatches mongoose.Query.prototype.exec:
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.
mongodb
Cachegoose also does aggregations, which we could do.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: