Support local cache #64
wangxiaoying
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Adding a local cache to speed up loading frequently accessed data.
A naive solution is to maintain a LRU cache of query results (e.g., dump to parquet files). When a new query is issued, first check whether a cache of the same query exists (has equivalent query plan), load and return the cache directly if exists otherwise issue the query to DB.
Here are some questions that we can discuss:
Beta Was this translation helpful? Give feedback.
All reactions