Sublime
An inspiration engine for ideas
Emergent Systems
Alex Mexicotte • 1 card
Ross Vandenhoeck
@rossvandenhoeck-d97a
Optimizing Further
Creating so many indices and aggregating so many tables is sub-optimal. To optimize this, we employ materialized views, which create a separate disk-based entity and hence support indexing. The only downside is that we have to keep it updated.
CREATE MATERIALIZED VIEW search_view AS
ᅠᅠSELECT c.name FROM company c UNION
ᅠᅠSELECT... See more
Creating so many indices and aggregating so many tables is sub-optimal. To optimize this, we employ materialized views, which create a separate disk-based entity and hence support indexing. The only downside is that we have to keep it updated.
CREATE MATERIALIZED VIEW search_view AS
ᅠᅠSELECT c.name FROM company c UNION
ᅠᅠSELECT... See more
How Levels.fyi Built Scalable Search with PostgreSQL
Organization
Kaitlyn Carroll • 1 card
Building a search panel for all my Markdown notes:
- Chrome file system API to sync from a directory
- remark to break files into blocks (heading, paragraph, etc)
- mxbai-embed-large model for vector search
- SQLocal to persist
Zero API calls. It's all local 😄... See more
Ben Holmesx.comAbundant Systems
Leo Guinan • 40 cards
Finds
Jennifer Velazquez • 1 card