Jake Xia
Jake Xia
Currently we use a postgres database that holds time-series data so that the documents are queryable by a timestamp. ``` { timestamp: ... , data: ..., id: ...} ``` I...
I gave timestamp as one example but typically the queries we run in postgres involve a couple joins across different tables. We also rely on Postgis for efficient querying of...
Also, how big can the allowlist be before we run into performance issues? If there are 5K ids in the list (this would be a realistic estimate for our usecase)?...