Viewing profile — tjgreen
tjgreen
HN member- Joined
- Sat, May 18, 2013, 4:43 PM UTC
- HN karma
- 100
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About tjgreen
No profile information was provided.
Recent public activity
-
comment
Comment #48417733
ParadeDB is AGPL so not generally available on the hyperscalars. However, you can use https://github.com/timescale/pg_textsearch on Azure HorizonDB (and likely soon Flex). Disclosu…
-
comment
Comment #47593819
A little birdie told me that efforts are underway to support the extension in Alloy, at least!
-
comment
Comment #47593650
Partitions would be one option, and we've got pretty robust partitioned table support in the extension. (Timescaledb uses partitioning for hypertables, so we had to front-load that…
-
comment
Comment #47593516
There is indeed such a tradeoff. The architecture is designed with an eye towards making this tradeoff tunable (frequency of memtable spills, aggressiveness of compaction) but the …
-
comment
Comment #47593474
Yes, hybrid search is one of the main current use cases we had in mind developing the extension, but it works for old-fashioned standalone keyword-only search as well. There is a l…
-
comment
Comment #47593374
You'll have to ask Supabase!
-
comment
Comment #47593233
For 2M scale dataset, you should be able to index in about 1 minute on low-end hardware. See the MS-MARCO v1 (8M documents) numbers, measured on cheap Github runners.
-
comment
Comment #47593201
Yep, there are numbers in the blog post and repo. We are able to index MS-MARCO v2 (138M documents, around 50GB of raw data) in a bit under 18 minutes.
-
comment
Comment #47592981
Okay then!
-
comment
Comment #47592974
I actually don't love this example either, for the reasons you mention, but at some point we had questions about how to filter based on numeric ranking. Thanks for the reminder to …
- comment
-
story
Show HN: Postgres extension for BM25 relevance-ranked full-text search
Last summer we faced a conundrum at my company, Tiger Data, a Postgres cloud vendor whose main business is in timeseries data. We were trying to grow our business towards emerging …
-
story
Show HN: Pg_textsearch – BM25 Ranking for Postgres
I built pg_textsearch, a Postgres extension that brings proper BM25 ranking to full-text search. It's designed for AI/RAG workloads where search quality directly impacts LLM output…