Is there a way to cache query results? #2683
Unanswered
AdamJSoftware
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my graphql API server, I am trying to implement a cache in order to not have to redo the same query multiple times. I was hoping to use something like moka and just store the query results in there (as I parse the query results later for performance reasons). Is there a way to serialize my query results for later, or is the only way to parse them now and store the parsed data inside the cache. As right now it seems that Clone is not implemented for QueryResult
Beta Was this translation helpful? Give feedback.
All reactions