You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@parquet.apache.org by David <da...@gmail.com> on 2020/09/12 22:00:01 UTC

Parquet Page Cache

Hello,

I am looking at making a read-only web service, backed by one or more
parquet files instead of a full blown database.  Doing a simple read-by-id
is easy to cache on the browser and the web server front end, but caching a
simple query (scan) becomes more problematic.  Is there a way to cache
parquet "pages" in memory so that any searches across the same pages (hot
spot) can skip disk reads?

Thanks.